Skip to content

Commit ba985e7

Browse files
Merge pull request #289 from ExaWorks/fix-docs-typos
docs and docstrings: fix typos
2 parents d0db43c + 268a690 commit ba985e7

File tree

8 files changed

+10
-10
lines changed

8 files changed

+10
-10
lines changed

QuickStart.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ Install psi-j from the github repository:
4040

4141
**Steps**
4242

43-
1. Create a file *my-worklfow.py* and copy and paste the code below:
43+
1. Create a file *my-workflow.py* and copy and paste the code below:
4444

4545
```python
4646

README-testing.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ Introduction
22
============
33

44
PSI/J comes with a testing infrastructure that allows users to contribute
5-
tests of the PSI/J library on resources they have access to and where
5+
tests of the PSI/J library itself on resources they have access to and where
66
running such tests is appropriate.
77

88
Contributed tests take the form of normal pytest runs for which results

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,6 @@ PSI/J is an abstraction layer over cluster schedulers to write scheduler agnosti
88
## Introduction
99

1010
1. [Quick start guide](QuickStart.md)
11-
2. [Wrapping tools examples](scripts/WORKFLOW-EXAMPLES.md)
11+
2. [Workflow examples](scripts/WORKFLOW-EXAMPLES.md)
1212
3. [Setting up tests](README-testing.md)
1313
4. [How to contribute](CONTRIBUTING.md)

docs/getting_started.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -53,9 +53,9 @@ other than complexity.
5353
If you write application code that is meant to run on various HPC clusters, but
5454
which never make calls to the underlying resource manager (e.g. by calling into
5555
Flux's client library, or executing ``srun``/``jsrun``/``aprun`` etc.), then
56-
PSI/J will not help you. This is likely your situation if you work on a MPI-based
57-
science simulation, since we have observed that it is often the users' responsibility
58-
to actually launch the simulation through the resource manager.
56+
PSI/J will not help you. This is likely your situation if you are a developer working
57+
on a MPI-based science simulation, since we have observed that it is often the users'
58+
responsibility to actually launch the simulation through the resource manager.
5959
However, PSI/J is more likely to help with various tools
6060
associated with your simulation--for instance, your test suite.
6161

src/psij/executors/batch/pbspro.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ class PBSProJobExecutor(BatchSchedulerExecutor):
5454
`PBS Pro <https://www.altair.com/pbs-professional/>`_ is a resource manager
5555
on certain machines at Argonne National Lab, among others.
5656
57-
Uses the 'qsub', 'qstat', and 'qdel' commands, respectively, to submit,
57+
Uses the ``qsub``, ``qstat``, and ``qdel`` commands, respectively, to submit,
5858
monitor, and cancel jobs.
5959
6060
Creates a batch script with #PBS directives when submitting a job.

src/psij/launchers/aprun.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99

1010
class AprunLauncher(MultipleLauncher):
11-
"""Launches a job using Cobalt's `aprun`."""
11+
"""Launches a job using Cobalt's ``aprun``."""
1212

1313
def __init__(self, config: Optional[JobExecutorConfig] = None):
1414
"""

src/psij/launchers/jsrun.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99

1010
class JsrunLauncher(MultipleLauncher):
11-
"""Launches a job using LSF's `jsrun`."""
11+
"""Launches a job using LSF's ``jsrun``."""
1212

1313
def __init__(self, config: Optional[JobExecutorConfig] = None):
1414
"""

src/psij/launchers/srun.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88

99
class SrunLauncher(MultipleLauncher):
10-
"""Launches a job using Slurm's `srun`.
10+
"""Launches a job using Slurm's ``srun``.
1111
1212
See the
1313
`Slurm Workload Manager <https://slurm.schedmd.com/overview.html>`_.

0 commit comments

Comments
 (0)