spell checker typo fixes

This commit is contained in:
yardasol 2022-07-14 14:22:33 -05:00
parent 39472e286c
commit 47344ca5cb
2 changed files with 5 additions and 5 deletions

View file

@ -45,10 +45,10 @@ def _distribute(items):
class OpenMCOperator(TransportOperator):
"""Abstrct class holding OpenMC-specific functions for running
"""Abstract class holding OpenMC-specific functions for running
depletion calculations.
Specific classes for running couples transport-depleton calculations or
Specific classes for running coupled transport-depletion calculations or
depletion-only calculations are implemented as subclasses of OpenMCOperator
Parameters
@ -265,7 +265,7 @@ class OpenMCOperator(TransportOperator):
@abstractmethod
def _load_previous_results(self):
"""Load reuslts from a previous depletion simulation"""
"""Load results from a previous depletion simulation"""
@abstractmethod
def _get_nuclides_with_data(self, cross_sections):
@ -375,7 +375,7 @@ class OpenMCOperator(TransportOperator):
instantiate.
normalization_mode : str
Indicates the subclass of :class:`NormalizationHelper` to
instatiate.
instantiate.
fission_yield_mode : str
Indicates the subclass of :class:`FissionYieldHelper` to instatiate.
reaction_rate_opts : dict

View file

@ -314,7 +314,7 @@ class Operator(OpenMCOperator):
Indicates the subclass of :class:`NormalizationHelper` to
instatiate.
fission_yield_mode : str
Indicates the subclass of :class:`FissionYieldHelper` to instatiate.
Indicates the subclass of :class:`FissionYieldHelper` to instantiate.
reaction_rate_opts : dict
Keyword arguments that are passed to the :class:`ReactionRateHelper`
subclass.