File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -198,7 +198,7 @@ not depend on any runtime arguments). The type of static actions in Cloud
198
198
Haskell is ` Closure (Process a) ` . More generally, a value of type ` Closure b `
199
199
is a value that was constructed explicitly as the composition of symbolic
200
200
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
202
202
send actions of type ` Process () ` , we can construct a value of type `Closure
203
203
(Process ())` instead, containing a symbolic name for the action, and send
204
204
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
218
218
arguments). However, to ensure that the remote side can adequately interpret
219
219
the resulting ` Closure ` , you'll need to add a mapping in a so-called * remote
220
220
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
222
222
the same remote table as the local one.
223
223
224
224
We need to configure our remote table (see the [ API reference] [ 6 ] for
You can’t perform that action at this time.
0 commit comments