We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent be8c76a commit 268abd9Copy full SHA for 268abd9
README.md
@@ -20,7 +20,7 @@ It doesn't really matter if it is run synchronously or asynchronously. But what
20
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.
22
Summary:
23
- * If you pass a function to some other piece of code, yjrm it can be run synchronously or asynchronously.
+ * If you pass a function to some other piece of code, it can be run synchronously or asynchronously.
24
* If you need an immediate result, then it's either run in-process (synchronous), or in another process, but you'll need to wait.
25
* You decide when to wait, and what to wait for. You can ignore waiting, or combine waits, etc.
26
* Data is immutable, so the function can't change your context that the function was created in.
0 commit comments