Skip to content

Commit 40c8958

Browse files
committed
Fix several typos found with codespell
Signed-off-by: Xavier Delaruelle <[email protected]>
1 parent bc51f3e commit 40c8958

File tree

17 files changed

+21
-21
lines changed

17 files changed

+21
-21
lines changed

doc/example/compiler-etc-dependencies/flavours/intelmpi/default

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
#
77
#
88
# This is really a placeholder modulefile, does not define anything
9-
# though we must iniitial flavours and do a cleanup to properly
9+
# though we must initial flavours and do a cleanup to properly
1010
# support switching of modules depending on this module
1111

1212
# Initialise "flavours"

doc/example/compiler-etc-dependencies/tcllib/LoadedMpiMatches.tcl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ Please unload the MPI library and try again."
4747

4848
# If no MPI is loaded, then load it if $loadIt (this is valid even
4949
# in edge cases of nompi or intelmpi), prereq it if $requireIt,
50-
# abd return
50+
# and return
5151
if { $loaded eq {} } {
5252
if { $loadIt } {
5353
RequireMPI $wanted $noLoadIntel

doc/source/cookbook/modulefiles-in-git.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ First convert the existing Modulefiles into a git repo at
6767
cd /home/modules/modulefiles
6868
git init
6969
git add .
70-
git commit -m 'Initial checkin of existing Modulefiles'
70+
git commit -m 'Initial checking of existing Modulefiles'
7171
# Enable updates when receiving pushes:
7272
git config --local receive.denyCurrentBranch updateInstead
7373

doc/source/cookbook/tips-for-code-reuse.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -239,7 +239,7 @@ this is done by:
239239

240240
The above was only a simple example of what could be done, but it shows how
241241
modulefiles can leverage the fact that the modulefiles are evaluated in a
242-
full programming language to increase the amount of code re-use, which should
242+
full programming language to increase the amount of code reuse, which should
243243
reduce errors, improve consistency, and in general make things more manageable
244244
over the long run.
245245

doc/source/design/module-cache.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -321,7 +321,7 @@ access entries are tested if they match search query. Test is done through
321321
``findModulesFromDirsAndFiles`` procedure which corresponds to the walk down
322322
code extracted from ``findModules``.
323323

324-
This specific interpreter is re-used between different cache file evaluations.
324+
This specific interpreter is reused between different cache file evaluations.
325325
As for modulefile interpreter, a consistency check is performed before each
326326
reuse to test that the cache file-specific commands have not be rewritten
327327
during previous cache file evaluation.

doc/source/module.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2982,7 +2982,7 @@ or consequence of a module action. The inherited tags are:
29822982
the result of an :subcmd:`avail` sub-command.
29832983
* ``hidden-loaded``: module has been set *hidden once loaded* through the use
29842984
of the :mfcmd:`module-hide --hidden-loaded<module-hide>` command thus it is
2985-
not reported bu default among the result of a :subcmd:`list` sub-command.
2985+
not reported by default among the result of a :subcmd:`list` sub-command.
29862986
* ``loaded``: module is currently loaded
29872987
* ``nearly-forbidden``: module will soon be *forbidden*, which has been set
29882988
through the use of the :mfcmd:`module-forbid` command. Thus this module

script/gitlog2changelog.py.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,7 @@ for line in fin:
159159

160160
# Assemble the actual commit message line(s) and limit the line length
161161
# to 80 characters.
162-
# Avoid printing same (or equivalen) filename lists twice, if commit
162+
# Avoid printing same (or equivalent) filename lists twice, if commit
163163
# message starts with them.
164164
if message.startswith(files + ":"):
165165
commitLine = "* " + message

tcl/subcmd.tcl.in

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -622,7 +622,7 @@ proc cmdModuleSwitch {uasked tag_list old {new {}}} {
622622
proc cmdModuleSave {{coll default}} {
623623
if {![areModuleConstraintsSatisfied]} {
624624
reportErrorAndExit {Cannot save collection, some module constraints are\
625-
not satistied}
625+
not satisfied}
626626
}
627627

628628
# format collection content, version number of modulefile are saved if
@@ -1805,7 +1805,7 @@ proc cmdModuleReload {} {
18051805
# no reload of all loaded modules attempt if constraints are violated
18061806
if {![areModuleConstraintsSatisfied]} {
18071807
reportError {Cannot reload modules, some of their constraints are not\
1808-
satistied}
1808+
satisfied}
18091809
} else {
18101810
pushSettings
18111811
if {[set errCode [catch {

testsuite/modulefiles/dirmodalias/1.0

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
# }R%
2121
# Comment: %C{
2222
# Test the correct handling of module alias whose name
23-
# superseeds an existing directory name
23+
# supersedes an existing directory name
2424
# }C%
2525
#
2626
##############################################################################

testsuite/modulefiles/dirmodvirt/1.0

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
# }R%
2121
# Comment: %C{
2222
# Test the correct handling of virtual module whose name
23-
# superseeds an existing directory name
23+
# supersedes an existing directory name
2424
# }C%
2525
#
2626
##############################################################################

0 commit comments

Comments
 (0)