Skip to content

Commit 0388647

Browse files
committed
Doc: fix whitespace so that lists are formatted correctly in parallel computing section
1 parent dcde391 commit 0388647

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

doc/manual/parallel-computing.rst

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -670,7 +670,7 @@ enabling Julia's natural parallelism to function quite transparently
670670
in a cluster environment. The ``ClusterManager`` interface provides a
671671
way to specify a means to launch and manage worker processes.
672672

673-
Thus, a custom cluster manager would need to :
673+
Thus, a custom cluster manager would need to:
674674

675675
- be a subtype of the abstract ``ClusterManager``
676676
- implement ``launch``, a method responsible for launching new workers
@@ -692,6 +692,7 @@ starting workers on the same host, is implemented::
692692
end
693693

694694
The ``launch`` method takes the following arguments:
695+
695696
- ``manager::LocalManager`` - used to dispatch the call to the appropriate implementation
696697
- ``np::Integer`` - number of workers to be launched
697698
- ``config::Dict`` - all the keyword arguments provided as part of the ``addprocs`` call
@@ -726,6 +727,7 @@ where:
726727
the worker.
727728

728729
The ``manage`` method takes the following arguments:
730+
729731
- ``manager::ClusterManager`` - used to dispatch the call to the appropriate implementation
730732
- ``id::Integer`` - The Julia process id
731733
- ``config::Dict`` - configuration dictionary for the worker. The data may have been modified by the ``launch`` method

0 commit comments

Comments
 (0)