From 97cb309f1fcaa81e88e89544bc2fb14aad993ea1 Mon Sep 17 00:00:00 2001 From: Will Boyd Date: Mon, 25 May 2015 00:39:47 -0400 Subject: [PATCH] Fixed mis-spelled comment in TalliesFile.merge_tallies(...) routine --- src/utils/openmc/tallies.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils/openmc/tallies.py b/src/utils/openmc/tallies.py index e0d8a2fce..2971a8537 100644 --- a/src/utils/openmc/tallies.py +++ b/src/utils/openmc/tallies.py @@ -884,7 +884,7 @@ class TalliesFile(object): merged_tally = tally1.merge(tally2) self._tallies[i] = merged_tally - # Remove tally 2 since it is no longer neede + # Remove tally 2 since it is no longer needed self._tallies.pop(j) # Continue iterating from the first loop