There was an error while loading. Please reload this page.
1 parent a767ff1 commit 8633305Copy full SHA for 8633305
1 file changed
docs/refguide/action.md
@@ -14,7 +14,7 @@ Any application has actions. Actions are anything that modify the state.
14
With MobX you can make it explicit in your code where your actions live by marking them.
15
Actions help you to structure your code better.
16
17
-It takes a function and returns a function with the same signuature.
+It takes a function and returns a function with the same signature.
18
But wrapped with `transaction`, `untracked` and `allowStateChanges`.
19
Especially the fact that `transaction` is applied automatically yields great performance benefits;
20
actions will batch mutations and only notify computed values and reactions after the (outer most) action has finished.
0 commit comments