Added a space in a warning for multiplicity matrix values being 0

This commit is contained in:
agnelson 2021-12-30 12:46:33 -06:00
parent 622fea5445
commit 6183d08c48

View file

@ -49,7 +49,7 @@ void ScattData::base_init(int order, const xt::xtensor<int, 1>& in_gmin,
// Raise a warning to the user if we did have to do the conversion
std::string msg =
std::to_string(num_converted) +
"entries in the Multiplicity Matrix were changed from 0 to 1";
" entries in the Multiplicity Matrix were changed from 0 to 1";
warning(msg);
}