Fixed small typo in actors.rst. (#595)

This commit is contained in:
Michael Whittaker
2017-05-25 11:30:45 -07:00
committed by Robert Nishihara
parent 3885d1b286
commit 1985838a30
+3 -3
View File
@@ -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