spelling fix in warning message.

This commit is contained in:
John Tramm 2021-07-01 18:33:02 +00:00
parent 51b452ec48
commit 7cc508ea48
2 changed files with 2 additions and 2 deletions

View file

@ -205,7 +205,7 @@ create_fission_sites(Particle& p, int i_nuclide, const Reaction& rx)
int64_t idx = simulation::fission_bank.thread_safe_append(site);
if (idx == -1) {
warning("The shared fission bank is full. Additional fission sites created "
"in this generation will not be banked. Results may be non-deteministic.");
"in this generation will not be banked. Results may be non-deterministic.");
// Decrement number of particle progeny as storage was unsuccessful. This
// step is needed so that the sum of all progeny is equal to the size

View file

@ -164,7 +164,7 @@ create_fission_sites(Particle& p)
int64_t idx = simulation::fission_bank.thread_safe_append(site);
if (idx == -1) {
warning("The shared fission bank is full. Additional fission sites created "
"in this generation will not be banked. Results may be non-deteministic.");
"in this generation will not be banked. Results may be non-deterministic.");
// Decrement number of particle progeny as storage was unsuccessful. This
// step is needed so that the sum of all progeny is equal to the size