diff --git a/content/docs/strict-mode.md b/content/docs/strict-mode.md index e803a32d..b7d8b647 100644 --- a/content/docs/strict-mode.md +++ b/content/docs/strict-mode.md @@ -87,9 +87,9 @@ The commit phase is usually very fast, but rendering can be slow. For this reaso Render phase lifecycles include the following class component methods: * `constructor` -* `componentWillMount` -* `componentWillReceiveProps` -* `componentWillUpdate` +* `componentWillMount` (or `UNSAFE_componentWillMount`) +* `componentWillReceiveProps` (or `UNSAFE_componentWillReceiveProps`) +* `componentWillUpdate` (or `UNSAFE_componentWillUpdate`) * `getDerivedStateFromProps` * `shouldComponentUpdate` * `render`