Skip to content

Commit 7873740

Browse files
authored
remove alternative spellings of paramete?ri[sz]e (#563)
1 parent fdbed01 commit 7873740

File tree

7 files changed

+22
-23
lines changed

7 files changed

+22
-23
lines changed

src/dictionaries/words

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ env
2929
etc
3030
executables
3131
facade
32+
fallback
3233
filename
3334
filenames
3435
filesystem
@@ -82,10 +83,8 @@ obs
8283
offline
8384
onwards
8485
packjob
85-
parameterisation
86-
parameterise
87-
parameterised
8886
parameterization
87+
parameterize
8988
parameterized
9089
passX
9190
passphrase

src/glossary.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1219,8 +1219,8 @@ Glossary
12191219

12201220

12211221
task parameters
1222-
parameterisation
1223-
Task parameterisation is one way of consolidating configuration in the
1222+
parameterization
1223+
Task parameterization is one way of consolidating configuration in the
12241224
:cylc:conf:`flow.cylc` file. Cylc implicitly loops over ranges or lists
12251225
of pre-defined parameters to automatically generate sets of similar
12261226
tasks.
@@ -1247,7 +1247,7 @@ Glossary
12471247
.. seealso::
12481248

12491249
* :ref:`Cylc User Guide <User Guide Param>`
1250-
* :ref:`Cylc tutorial <tutorial-cylc-parameterisation>`
1250+
* :ref:`Cylc tutorial <tutorial-cylc-parameterization>`
12511251

12521252

12531253
family

src/tutorial/runtime/configuration-consolidation/index.rst

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -100,7 +100,7 @@ The ``cylc config`` Command
100100

101101
A primary use of ``cylc config`` is inspecting the
102102
``[runtime]`` section of a workflow. However, the command does not
103-
expand :term:`parameterisations <parameterisation>` and
103+
expand :term:`parameterizations <parameterization>` and
104104
:term:`families <family>` in the workflow :term:`graph`. To see the
105105
expanded graph use the ``cylc graph`` command.
106106

@@ -129,7 +129,7 @@ The ``cylc config`` Command
129129

130130
.. ifslides::
131131

132-
Note that ``cylc config`` doesn't expand families or parameterisations
132+
Note that ``cylc config`` doesn't expand families or parameterizations
133133
in the :term:`graph`. Use ``cylc graph`` to visualise these.
134134

135135
.. TODO - Raise and issue for this, note cylc config and cylc view.
@@ -146,7 +146,7 @@ The Three Approaches
146146

147147
* :ref:`families <tutorial-cylc-families>`
148148
* :ref:`jinja2 <tutorial-cylc-jinja2>`
149-
* :ref:`parameters <tutorial-cylc-parameterisation>`
149+
* :ref:`parameters <tutorial-cylc-parameterization>`
150150

151151

152152
.. _cylc-tutorial-consolidation-conclusion:
@@ -165,7 +165,7 @@ Which Approach To Use
165165
* `Jinja2`_ is good at configuring settings which apply to the entire workflow
166166
rather than just a single task, as we can define variables then use them
167167
throughout the workflow.
168-
* :term:`Parameterisation <parameterisation>` works best for describing tasks
168+
* :term:`Parameterization <parameterization>` works best for describing tasks
169169
which are very similar but which have subtly different configurations
170170
(e.g. different arguments or environment variables).
171171

@@ -177,7 +177,7 @@ Which Approach To Use
177177
Collecting tasks into broad groups.
178178
Jinja2
179179
Configuration settings which apply to the entire workflow.
180-
Parameterisation
180+
Parameterization
181181
Tasks which are similar.
182182

183183
.. nextslide::

src/tutorial/runtime/configuration-consolidation/jinja2.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@ This would result in:
169169
.. rubric:: This practical continues on from the
170170
:ref:`families practical <cylc-tutorial-families-practical>`.
171171

172-
Next section: :ref:`tutorial-cylc-parameterisation`
172+
Next section: :ref:`tutorial-cylc-parameterization`
173173

174174

175175
.. _cylc-tutorial-jinja2-practical:

src/tutorial/runtime/configuration-consolidation/parameters.rst

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
1-
.. _tutorial-cylc-parameterisation:
1+
.. _tutorial-cylc-parameterization:
22

33

4-
Parameterised Tasks
4+
Parameterized Tasks
55
===================
66

77

8-
Parameterised tasks (see :term:`parameterisation`) provide a way of implicitly
8+
Parameterized tasks (see :term:`parameterization`) provide a way of implicitly
99
looping over tasks without the need for Jinja2.
1010

1111

@@ -197,10 +197,10 @@ Parameters can be either strings or integers:
197197
.. rubric:: This practical continues on from the
198198
:ref:`Jinja2 practical <cylc-tutorial-jinja2-practical>`.
199199

200-
4. **Use Parameterisation To Consolidate The** ``get_observations``
200+
4. **Use Parameterization To Consolidate The** ``get_observations``
201201
**Tasks**.
202202

203-
Next we will parameterise the ``get_observations`` tasks.
203+
Next we will parameterize the ``get_observations`` tasks.
204204

205205
Add a parameter called ``station``:
206206

@@ -273,7 +273,7 @@ Parameters can be either strings or integers:
273273
274274
cylc config . -i "[runtime]"
275275
276-
Finally we can use this parameterisation to simplify the workflow's
276+
Finally we can use this parameterization to simplify the workflow's
277277
graphing. Replace the ``get_observations`` lines in the graph with
278278
``get_observations<station>``:
279279

@@ -294,14 +294,14 @@ Parameters can be either strings or integers:
294294
in the graph so you must use ``cylc graph`` to inspect changes to the
295295
graphing.
296296

297-
#. **Use Parameterisation To Consolidate The** ``post_process`` **Tasks**.
297+
#. **Use Parameterization To Consolidate The** ``post_process`` **Tasks**.
298298

299299
At the moment we only have one ``post_process`` task
300300
(``post_process_exeter``), but suppose we wanted to add a second task for
301301
Edinburgh.
302302

303303
Create a new parameter called ``site`` and set it to contain ``exeter``
304-
and ``edinburgh``. Parameterise the ``post_process`` task using this
304+
and ``edinburgh``. Parameterize the ``post_process`` task using this
305305
parameter.
306306

307307
.. hint::
@@ -325,7 +325,7 @@ Parameters can be either strings or integers:
325325
station = aldergrove, camborne, heathrow, shetland
326326
+ site = exeter, edinburgh
327327
328-
Next we parameterise the task in the graph:
328+
Next we parameterize the task in the graph:
329329

330330
.. code-block:: diff
331331

src/user-guide/running-workflows/task-job-states.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ icons like this: |task-running|.
99

1010
**Jobs** are less abstract; they represent real job scripts submitted to run
1111
on a :term:`job platform`, or the final status of those real jobs. In the Cylc
12-
UI, job states have colored icons like this: |job-running|.
12+
UI, job states have coloured icons like this: |job-running|.
1313

1414
A single task can have multiple jobs, by automatic retry or manual triggering.
1515

src/user-guide/writing-workflows/parameterized-tasks.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Task Parameters
44
===============
55

66
Cylc can automatically generate related tasks and dependencies by expanding
7-
:term:`parameterized <parameterisation>` names over lists or ranges of
7+
:term:`parameterized <parameterization>` names over lists or ranges of
88
values. Uses for this include:
99

1010
- Generating an ensemble of similar model runs

0 commit comments

Comments
 (0)