diff --git a/react/class_components/component_lifecycle_methods.md b/react/class_components/component_lifecycle_methods.md index 482597d7ac1..7d6226f5cb0 100644 --- a/react/class_components/component_lifecycle_methods.md +++ b/react/class_components/component_lifecycle_methods.md @@ -16,7 +16,7 @@ The render function is the most used lifecycle method, and one that you've come ### componentDidMount() -This method is run after the component is mounted (inserted in the DOM tree). You should make any calls to fetch data that is needed for the component here. It is also a good place to do anything that is reliant on the component, such as fetching from an API. +This method is run after the component is mounted (inserted in the DOM tree). You should make any calls to fetch data that is needed for the component here. It is also a good place to perform any operations that depend on the component being mounted in the DOM, such as fetching from an API. ### componentDidUpdate()