Skip to content

Commit

Permalink
Merge pull request #100 from pgrimaud/master
Browse files Browse the repository at this point in the history
docs: fix typos
  • Loading branch information
mdickinson committed Apr 22, 2021
2 parents 985cd62 + 24bbdbc commit 951b441
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion etstool.py
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@
Other changes to commands should be a straightforward change to the listed
commands for each task. See the EDM documentation for more information about
how to run commands within an EDM enviornment.
how to run commands within an EDM environment.
"""

Expand Down
2 changes: 1 addition & 1 deletion scimath/units/has_units.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ def simple_parser(lines):
def has_units(func=None, summary='', doc='', inputs=None, outputs=None):
r"""Function decorator: Wrap a standard python function for unit
conversion. Note that conversion arguments must be supplied through
the decorator aguments or in a formatted docstring as shown below.
the decorator arguments or in a formatted docstring as shown below.
Parameters
----------
Expand Down
2 changes: 1 addition & 1 deletion scimath/units/unit_manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -282,7 +282,7 @@ def get_family_name(self, name):

if name == '':
# No match yet...
# Try to more agressively match by checking for * and ? matches
# Try to more aggressively match by checking for * and ? matches
for itm in self._wildcards:
if fnmatch(orig_name, itm):
name = itm
Expand Down
4 changes: 2 additions & 2 deletions scimath/units/unit_manipulation.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
of ft/s). convert_units() does this as well as adding units to non-united
objects. On output, it is common to want to take objects that may not
have units associated with them and convert them to a 'united' object
that has units assoicated with them set_units() does this.
that has units associated with them set_units() does this.
"""

# Numeric library imports
Expand All @@ -21,7 +21,7 @@
# Enthought library imports
import scimath.units as units

# Numerical modeling libary imports
# Numerical modeling library imports
from scimath.units.unit_array import UnitArray
from scimath.units.unit_scalar import UnitScalar
from six.moves import zip
Expand Down
2 changes: 1 addition & 1 deletion scimath/units/unit_system.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ class UnitSystem(HasTraits):
families. This is initially populated from the columns in the
scimath/units/data/unit_families.txt file (by the unit_manager).
The common unit sytems are likely named 'KGS', 'IMPERIAL' etc.
The common unit systems are likely named 'KGS', 'IMPERIAL' etc.
"""

# Unit System Traits
Expand Down

0 comments on commit 951b441

Please sign in to comment.