Skip to content

Commit 205aadb

Browse files
committed
remove extra spaces
1 parent 19d9cea commit 205aadb

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

README.md

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,14 +15,13 @@ Functions that invoke a callback synchronously in some cases and asynchronously
1515
others create forks in the execution path that make your code less predictable.
1616
```
1717

18-
But we ignore this warning in Elixir :) , because there is only one execution path
19-
for a delayed job - messages which your process will handle when it wants to.
18+
But, in Elixir, we laugh at this warning :) , because there is only one execution path
19+
for an asynchronous job: messages sent to your process which can then handle when it wants to.
2020

2121
For example, the Logger works like this in Elixir. If the backlog of things to log is
2222
small, then it completes synchronously, otherwise it will decide to switch to
2323
asynchronous mode, just like magic.
2424

25-
2625
Here's what the code invoked looks like:
2726
```
2827
result = Parallel.map_or_pmap_or_apmap((0..10), fn(x) -> x * x end)

0 commit comments

Comments
 (0)