Skip to content

Commit be8c76a

Browse files
authored
Update README.md
1 parent 9fac2d6 commit be8c76a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ others create forks in the execution path that make your code less predictable.
1818
Elixir is side effect free, and so the anonymous function cannot affect the context it is run in.
1919
It doesn't really matter if it is run synchronously or asynchronously. But what if you want to run it asynchronously?
2020
That's easy, just spawn a process, give it the function, and have the process send you a message when it is done.
21-
What if you don't want to wait for the answer. If you don't want to wait for the answer, then don't wait.
21+
What if you don't want to wait for the answer? If you don't want to wait for the answer, then don't wait.
2222
Summary:
2323
* If you pass a function to some other piece of code, yjrm it can be run synchronously or asynchronously.
2424
* If you need an immediate result, then it's either run in-process (synchronous), or in another process, but you'll need to wait.

0 commit comments

Comments
 (0)