Skip to content

Commit 142c2b7

Browse files
justinwoospicydonuts
authored andcommitted
Fix typo in docs (#60)
1 parent 9900f06 commit 142c2b7

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

generated-docs/React/Basic.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ and will emit a warning.
3232
- `didUpdate`
3333
- The React component's `componentDidUpdate` lifecycle. Rarely necessary.
3434
- `willUnmount`
35-
- The React component's `componentWillUpdate` lifecycle. Any subscriptions or timers created in `didMount` or `didUpdate` should be disposed of here.
35+
- The React component's `componentWillUnmount` lifecycle. Any subscriptions or timers created in `didMount` or `didUpdate` should be disposed of here.
3636

3737
The component spec is generally not exported from your component
3838
module and this type is rarely used explicitly. `make` will validate whether

src/React/Basic.purs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ import Type.Row (class Union)
6565
-- | - `didUpdate`
6666
-- | - The React component's `componentDidUpdate` lifecycle. Rarely necessary.
6767
-- | - `willUnmount`
68-
-- | - The React component's `componentWillUpdate` lifecycle. Any subscriptions or timers created in `didMount` or `didUpdate` should be disposed of here.
68+
-- | - The React component's `componentWillUnmount` lifecycle. Any subscriptions or timers created in `didMount` or `didUpdate` should be disposed of here.
6969
-- |
7070
-- | The component spec is generally not exported from your component
7171
-- | module and this type is rarely used explicitly. `make` will validate whether

0 commit comments

Comments
 (0)