Skip to content

Commit

Permalink
Merge pull request #340 from szepeviktor/typos
Browse files Browse the repository at this point in the history
Fix typos
  • Loading branch information
douglasjacobsen authored Dec 8, 2023
2 parents 504725f + d314ace commit 772acd5
Show file tree
Hide file tree
Showing 6 changed files with 25 additions and 21 deletions.
36 changes: 20 additions & 16 deletions .typos.toml
Original file line number Diff line number Diff line change
@@ -1,20 +1,24 @@
[default]
extend-ignore-identifiers-re = [
# *sigh* this just isn't worth the cost of fixing
"AttributeID.*Supress.*",
[files]
extend-exclude = [
".git/",
# Copy of https://github.com/spack/spack/tree/develop/lib/spack
"lib/ramble/external/",
"lib/ramble/llnl/",
"lib/ramble/spack/",
"var/",
]
ignore-hidden = false

[default.extend-identifiers]
# *sigh* this just isn't worth the cost of fixing
AttributeIDSupressMenu = "AttributeIDSupressMenu"

[default]
extend-ignore-re = [
"\\bFOMs",
]

[default.extend-words]
fom = "fom"
foms = "foms"
FO = "FO"
FOM = "FOM"
FOMs = "FOMs"
namd = "namd"
cachable = "cachable"
clen = "clen"
"fom" = "fom"
"namd" = "namd"

[default.extend-identifiers]
"ATPase" = "ATPase"
"cachable" = "cachable"
"clen" = "clen"
2 changes: 1 addition & 1 deletion lib/ramble/docs/tutorials/11_using_internals.rst
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@ And define the order of the executables for your experiments to include
want them to be executed.

For the purposes of this tutorial, add ``start_time`` directly before
``execute`` and ``end_time`` directly after ``exectute``. The resulting
``execute`` and ``end_time`` directly after ``execute``. The resulting
configuration file should look like the following:

.. code-block:: YAML
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ compilation could result in build-time errors that need to be resolved before
Ramble can generate experiments. Oftentimes it is both easier and faster to
work through these issues (if you encounter them) outside of Ramble, using the
package manager directly. Because Ramble uses the package manager, if the
package is already intalled it will not cause the package manager to re-install
package is already installed it will not cause the package manager to re-install
it.

In order to get information about what changes you can make to the GROMACS
Expand Down
2 changes: 1 addition & 1 deletion lib/ramble/ramble/application.py
Original file line number Diff line number Diff line change
Expand Up @@ -1353,7 +1353,7 @@ def format_context(context_match, context_format):
success = True
success = success and criteria_list.passed()

logger.debug('fom_vals = %s' % fom_values)
logger.debug('fom_values = %s' % fom_values)
results['EXPERIMENT_CHAIN'] = self.chain_order.copy()
if success:
self.set_status(status='SUCCESS')
Expand Down
2 changes: 1 addition & 1 deletion lib/ramble/ramble/cmd/workspace.py
Original file line number Diff line number Diff line change
Expand Up @@ -698,7 +698,7 @@ def workspace_mirror(args):


def sanitize_arg_name(base_name):
"""Allow function names to be remaped (eg `-` to `_`) """
"""Allow function names to be remapped (eg `-` to `_`) """
formatted_name = base_name.replace('-', '_')
return formatted_name

Expand Down
2 changes: 1 addition & 1 deletion lib/ramble/ramble/fetch_strategy.py
Original file line number Diff line number Diff line change
Expand Up @@ -1738,7 +1738,7 @@ def destroy(self):


class FetchError(ramble.error.RambleError):
"""Superclass fo fetcher errors."""
"""Superclass for fetcher errors."""


class NoCacheError(FetchError):
Expand Down

0 comments on commit 772acd5

Please sign in to comment.