Skip to content

Commit 2b31a26

Browse files
committed
Typo fix
1 parent 648a246 commit 2b31a26

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/src/docs/03-creating-stores.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ then returns new state. Handlers have the following signature:
2121
handler(currentState: any, payload: any)
2222
```
2323

24-
In Nucler, state can only be an ImmutableJS data type, such as an `Immutable.Map` or an `Immutable.List`, or a JavaScript primitive.
24+
In Nuclear, state can only be an ImmutableJS data type, such as an `Immutable.Map` or an `Immutable.List`, or a JavaScript primitive.
2525

2626
Because stores in Nuclear don't hold state — they simply receive state, transform it, and return new state — there is no need to worry about stores knowing
2727
about other stores. That means no confusing `store.waitsFor` and no cross-pollution of data. In Nuclear, the sole responsibility of a store is to return a portion

0 commit comments

Comments
 (0)