From 1985838a30294c59483d75adaf04342a3cd82d7e Mon Sep 17 00:00:00 2001 From: Michael Whittaker Date: Thu, 25 May 2017 11:30:45 -0700 Subject: [PATCH] Fixed small typo in actors.rst. (#595) --- doc/source/actors.rst | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/doc/source/actors.rst b/doc/source/actors.rst index 62deb6fb6..9c2a4e91a 100644 --- a/doc/source/actors.rst +++ b/doc/source/actors.rst @@ -79,9 +79,9 @@ second actor. Since these two tasks run on different actors, they can be executed in parallel (note that only actor methods will be scheduled on actor workers, not regular remote functions). -On the other hand, methods called on the same actor are executed serially and -share in the order that they are called and share state with one another. We -illustrate this with a simple example. +On the other hand, methods called on the same actor are executed serially in +the order that they are called and share state with one another. We illustrate +this with a simple example. .. code-block:: python