Skip to content

Commit 8633305

Browse files
authored
fix typo in action.md
1 parent a767ff1 commit 8633305

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

docs/refguide/action.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Any application has actions. Actions are anything that modify the state.
1414
With MobX you can make it explicit in your code where your actions live by marking them.
1515
Actions help you to structure your code better.
1616

17-
It takes a function and returns a function with the same signuature.
17+
It takes a function and returns a function with the same signature.
1818
But wrapped with `transaction`, `untracked` and `allowStateChanges`.
1919
Especially the fact that `transaction` is applied automatically yields great performance benefits;
2020
actions will batch mutations and only notify computed values and reactions after the (outer most) action has finished.

0 commit comments

Comments
 (0)