Skip to content

Commit 4ccd1c5

Browse files
committed
Minor grammar fixes
1 parent fdbd08e commit 4ccd1c5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

tutorials/1ch.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -198,7 +198,7 @@ not depend on any runtime arguments). The type of static actions in Cloud
198198
Haskell is `Closure (Process a)`. More generally, a value of type `Closure b`
199199
is a value that was constructed explicitly as the composition of symbolic
200200
pointers and serializable values. Values of type `Closure b` are serializable,
201-
even if values of type `b` might not. For instance, while we can't in general
201+
even if values of type `b` might not be. For instance, while we can't in general
202202
send actions of type `Process ()`, we can construct a value of type `Closure
203203
(Process ())` instead, containing a symbolic name for the action, and send
204204
that instead. So long as the remote end understands the same meaning for the
@@ -218,7 +218,7 @@ For curried functions, you'll need to uncurry them first (i.e. "tuple up" the
218218
arguments). However, to ensure that the remote side can adequately interpret
219219
the resulting `Closure`, you'll need to add a mapping in a so-called *remote
220220
table* associating the symbolic name of a function to its value. Processes can
221-
only be successfully spawned on remote nodes of all these remote nodes have
221+
only be successfully spawned on remote nodes if all these remote nodes have
222222
the same remote table as the local one.
223223

224224
We need to configure our remote table (see the [API reference][6] for

0 commit comments

Comments
 (0)