From 47344ca5cb18441e59910c734e2a7c5a88f6e7d1 Mon Sep 17 00:00:00 2001 From: yardasol Date: Thu, 14 Jul 2022 14:22:33 -0500 Subject: [PATCH] spell checker typo fixes --- openmc/deplete/openmc_operator.py | 8 ++++---- openmc/deplete/operator.py | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/openmc/deplete/openmc_operator.py b/openmc/deplete/openmc_operator.py index 2f1b932943..6b7ff29207 100644 --- a/openmc/deplete/openmc_operator.py +++ b/openmc/deplete/openmc_operator.py @@ -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 diff --git a/openmc/deplete/operator.py b/openmc/deplete/operator.py index 7149cddada..a86eb182f9 100644 --- a/openmc/deplete/operator.py +++ b/openmc/deplete/operator.py @@ -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.