diff --git a/generated-docs/React/Basic.md b/generated-docs/React/Basic.md index 4632e99..44b56cb 100644 --- a/generated-docs/React/Basic.md +++ b/generated-docs/React/Basic.md @@ -32,7 +32,7 @@ and will emit a warning. - `didUpdate` - The React component's `componentDidUpdate` lifecycle. Rarely necessary. - `willUnmount` - - The React component's `componentWillUpdate` lifecycle. Any subscriptions or timers created in `didMount` or `didUpdate` should be disposed of here. + - The React component's `componentWillUnmount` lifecycle. Any subscriptions or timers created in `didMount` or `didUpdate` should be disposed of here. The component spec is generally not exported from your component module and this type is rarely used explicitly. `make` will validate whether diff --git a/src/React/Basic.purs b/src/React/Basic.purs index 8252eb8..fc0f5d1 100644 --- a/src/React/Basic.purs +++ b/src/React/Basic.purs @@ -65,7 +65,7 @@ import Type.Row (class Union) -- | - `didUpdate` -- | - The React component's `componentDidUpdate` lifecycle. Rarely necessary. -- | - `willUnmount` --- | - The React component's `componentWillUpdate` lifecycle. Any subscriptions or timers created in `didMount` or `didUpdate` should be disposed of here. +-- | - The React component's `componentWillUnmount` lifecycle. Any subscriptions or timers created in `didMount` or `didUpdate` should be disposed of here. -- | -- | The component spec is generally not exported from your component -- | module and this type is rarely used explicitly. `make` will validate whether