diff --git a/contributing/implementation-notes.md b/contributing/implementation-notes.md index 64e1b26ae..6fb6ed831 100644 --- a/contributing/implementation-notes.md +++ b/contributing/implementation-notes.md @@ -576,7 +576,7 @@ class CompositeComponent { // Component class // Call the lifecycle if necessary if (publicInstance.componentWillUpdate) { - publicInstance.componentWillUpdate(prevProps); + publicInstance.componentWillUpdate(nextProps); } // Update the props publicInstance.props = nextProps;