Skip to content

Commit c9964f6

Browse files
committed
Change you will learn" capitalization
1 parent b505d03 commit c9964f6

34 files changed

+34
-34
lines changed

docs/src/learn/choosing-the-state-structure.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Structuring state well can make a difference between a component that is pleasan
66

77
</p>
88

9-
!!! summary "You Will Learn"
9+
!!! summary "You will learn"
1010

1111
- When to use a single vs multiple state variables
1212
- What to avoid when organizing state

docs/src/learn/conditional-rendering.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Your components will often need to display different things depending on differe
66

77
</p>
88

9-
!!! summary "You Will Learn"
9+
!!! summary "You will learn"
1010

1111
- How to return different JSX depending on a condition
1212
- How to conditionally include or exclude a piece of JSX

docs/src/learn/editor-setup.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ A properly configured editor can make code clearer to read and faster to write.
66

77
</p>
88

9-
!!! summary "You Will Learn"
9+
!!! summary "You will learn"
1010

1111
- What the most popular editors are
1212
- How to format your code automatically

docs/src/learn/extracting-state-logic-into-a-reducer.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Components with many state updates spread across many event handlers can get ove
66

77
</p>
88

9-
!!! summary "You Will Learn"
9+
!!! summary "You will learn"
1010

1111
- What a reducer function is
1212
- How to refactor `useState` to `useReducer`

docs/src/learn/importing-and-exporting-components.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ The magic of components lies in their reusability: you can create components tha
66

77
</p>
88

9-
!!! summary "You Will Learn"
9+
!!! summary "You will learn"
1010

1111
- What a root component file is
1212
- How to import and export a component

docs/src/learn/installation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ React has been designed from the start for gradual adoption. You can use as litt
66

77
</p>
88

9-
!!! summary "You Will Learn"
9+
!!! summary "You will learn"
1010

1111
* [How to start a new React project](../learn/start-a-new-react-project.md)
1212
* [How to add React to an existing project](../learn/add-react-to-an-existing-project.md)

docs/src/learn/keeping-components-pure.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Some JavaScript functions are _pure._ Pure functions only perform a calculation
66

77
</p>
88

9-
!!! summary "You Will Learn"
9+
!!! summary "You will learn"
1010

1111
- What purity is and how it helps you avoid bugs
1212
- How to keep components pure by keeping changes out of the render phase

docs/src/learn/lifecycle-of-reactive-effects.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Effects have a different lifecycle from components. Components may mount, update
66

77
</p>
88

9-
!!! summary "You Will Learn"
9+
!!! summary "You will learn"
1010

1111
- How an Effect's lifecycle is different from a component's lifecycle
1212
- How to think about each individual Effect in isolation

docs/src/learn/manipulating-the-dom-with-refs.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ React automatically updates the [DOM](https://developer.mozilla.org/docs/Web/API
66

77
</p>
88

9-
!!! summary "You Will Learn"
9+
!!! summary "You will learn"
1010

1111
- How to access a DOM node managed by React with the `ref` attribute
1212
- How the `ref` JSX attribute relates to the `useRef` Hook

docs/src/learn/passing-data-deeply-with-context.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Usually, you will pass information from a parent component to a child component
66

77
</p>
88

9-
!!! summary "You Will Learn"
9+
!!! summary "You will learn"
1010

1111
- What "prop drilling" is
1212
- How to replace repetitive prop passing with context

0 commit comments

Comments
 (0)