Skip to content

Commit 93177e6

Browse files
fix(rules-of-react): "everytime" -> "every time" (#6737)
1 parent 712556c commit 93177e6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/content/reference/rules/components-and-hooks-must-be-pure.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ This reference page covers advanced topics and requires familiarity with the con
1616

1717
One of the key concepts that makes React, _React_ is _purity_. A pure component or hook is one that is:
1818

19-
* **Idempotent** – You [always get the same result everytime](/learn/keeping-components-pure#purity-components-as-formulas) you run it with the same inputs – props, state, context for component inputs; and arguments for hook inputs.
19+
* **Idempotent** – You [always get the same result every time](/learn/keeping-components-pure#purity-components-as-formulas) you run it with the same inputs – props, state, context for component inputs; and arguments for hook inputs.
2020
* **Has no side effects in render** – Code with side effects should run [**separately from rendering**](#how-does-react-run-your-code). For example as an [event handler](/learn/responding-to-events) – where the user interacts with the UI and causes it to update; or as an [Effect](/reference/react/useEffect) – which runs after render.
2121
* **Does not mutate non-local values**: Components and Hooks should [never modify values that aren't created locally](#mutation) in render.
2222

@@ -70,7 +70,7 @@ function Dropdown() {
7070

7171
## Components and Hooks must be idempotent {/*components-and-hooks-must-be-idempotent*/}
7272

73-
Components must always return the same output with respect to their inputs – props, state, and context. This is known as _idempotency_. [Idempotency](https://en.wikipedia.org/wiki/Idempotence) is a term popularized in functional programming. It refers to the idea that you [always get the same result everytime](learn/keeping-components-pure) you run that piece of code with the same inputs.
73+
Components must always return the same output with respect to their inputs – props, state, and context. This is known as _idempotency_. [Idempotency](https://en.wikipedia.org/wiki/Idempotence) is a term popularized in functional programming. It refers to the idea that you [always get the same result every time](learn/keeping-components-pure) you run that piece of code with the same inputs.
7474

7575
This means that _all_ code that runs [during render](#how-does-react-run-your-code) must also be idempotent in order for this rule to hold. For example, this line of code is not idempotent (and therefore, neither is the component):
7676

0 commit comments

Comments
 (0)