diff --git a/README.md b/README.md index 5b1ee6c..04b625d 100644 --- a/README.md +++ b/README.md @@ -140,7 +140,7 @@ Take a look at how this pattern may be applied in the table below. | `handleClickOutside` | | `handle` | `Click` | `Outside` | | `shouldDisplayMessage` | `should` | `Display` | `Message` | | -> **Note:** The order of context affects the meaning of a variable. For example, `shouldUpdateComponent` means _you_ are about to update a component, while `shouldComponentUpdate` tells you that _component_ will update on itself, and you are but controlling when it should be updated. +> **Note:** The order of context affects the meaning of a variable. For example, `shouldUpdateComponent` means _you_ are about to update a component, while `shouldComponentUpdate` tells you that _component_ will update itself, and you are only controlling _when_ it should update. > In other words, **high context emphasizes the meaning of a variable**. ---