Skip to content

Commit e89a434

Browse files
authored
Fix line number refs in forces tutorial
1 parent f013911 commit e89a434

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

docs/tutorials/executor_forces_tutorial.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ generation functions and call libEnsemble. Create a Python file called
4444

4545
.. code-block:: python
4646
:linenos:
47-
:emphasize-lines: 17,25, 28
47+
:emphasize-lines: 16,24,27
4848
4949
#!/usr/bin/env python
5050
import os
@@ -74,13 +74,13 @@ generation functions and call libEnsemble. Create a Python file called
7474
# Parse number of workers, comms type, etc. from arguments
7575
ensemble = Ensemble(parse_args=True, executor=exctr)
7676
77-
On line 15, we instantiate our :doc:`MPI Executor<../executor/mpi_executor>`.
77+
On line 16, we instantiate our :doc:`MPI Executor<../executor/mpi_executor>`.
7878

7979
Registering an application is as easy as providing the full file-path and giving
8080
it a memorable name. This Executor will later be used within our simulation
8181
function to launch the registered app.
8282

83-
On line 22, we initialize the ensemble. The :meth:`parse_args<tools.parse_args>`
83+
On line 27, we initialize the ensemble. The :meth:`parse_args<tools.parse_args>`
8484
parameter is used to read `comms` and `nworkers` from the command line. This sets
8585
the respective `libE_specs` options.
8686

0 commit comments

Comments
 (0)