From 2ef98c551fdc9b68765db2d1bee4da5b5b120250 Mon Sep 17 00:00:00 2001 From: Jiahao Chen Date: Sat, 4 Oct 2014 20:55:55 -0400 Subject: [PATCH] Doc: fix whitespace so that lists are formatted correctly in parallel computing section --- doc/manual/parallel-computing.rst | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/doc/manual/parallel-computing.rst b/doc/manual/parallel-computing.rst index b0c2414f8557be..5bb3f9a5f6e501 100644 --- a/doc/manual/parallel-computing.rst +++ b/doc/manual/parallel-computing.rst @@ -670,7 +670,7 @@ enabling Julia's natural parallelism to function quite transparently in a cluster environment. The ``ClusterManager`` interface provides a way to specify a means to launch and manage worker processes. -Thus, a custom cluster manager would need to : +Thus, a custom cluster manager would need to: - be a subtype of the abstract ``ClusterManager`` - implement ``launch``, a method responsible for launching new workers @@ -726,6 +726,7 @@ where: the worker. The ``manage`` method takes the following arguments: + - ``manager::ClusterManager`` - used to dispatch the call to the appropriate implementation - ``id::Integer`` - The Julia process id - ``config::Dict`` - configuration dictionary for the worker. The data may have been modified by the ``launch`` method