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

docs/src/learn/passing-props-to-a-component.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ React components use _props_ to communicate with each other. Every parent compon
66

77
</p>
88

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

1111
- How to pass props to a component
1212
- How to read props from a component

docs/src/learn/preserving-and-resetting-state.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ State is isolated between components. React keeps track of which state belongs t
66

77
</p>
88

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

1111
- How React "sees" component structures
1212
- When React chooses to preserve or reset the state

docs/src/learn/python-in-psx-with-curly-braces.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ JSX lets you write HTML-like markup inside a JavaScript file, keeping rendering
1313
1414
</p>
1515
16-
!!! summary "You Will Learn"
16+
!!! summary "You will learn"
1717
1818
- How to pass strings with quotes
1919
- How to reference a JavaScript variable inside JSX with curly braces

docs/src/learn/queueing-a-series-of-state-updates.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Setting a state variable will queue another render. But sometimes you might want
66

77
</p>
88

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

1111
- What "batching" is and how React uses it to process multiple state updates
1212
- How to apply several updates to the same state variable in a row

docs/src/learn/quick-start.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Welcome to the ReactPy documentation! This page will give you an introduction to
66

77
</p>
88

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

1111
- How to create and nest components
1212
- How to add markup and styles

docs/src/learn/react-developer-tools.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Use React Developer Tools to inspect React [components](../learn/your-first-comp
1313
1414
</p>
1515
16-
!!! summary "You Will Learn"
16+
!!! summary "You will learn"
1717
1818
- How to install ReactPy Developer Tools
1919

docs/src/learn/reacting-to-input-with-state.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ React provides a declarative way to manipulate the UI. Instead of manipulating i
66

77
</p>
88

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

1111
- How declarative UI programming differs from imperative UI programming
1212
- How to enumerate the different visual states your component can be in

docs/src/learn/referencing-values-with-refs.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ When you want a component to "remember" some information, but you don't want tha
66

77
</p>
88

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

1111
- How to add a ref to your component
1212
- How to update a ref's value

docs/src/learn/removing-effect-dependencies.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ When you write an Effect, the linter will verify that you've included every reac
66

77
</p>
88

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

1111
- How to fix infinite Effect dependency loops
1212
- What to do when you want to remove a dependency

docs/src/learn/render-and-commit.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Before your components are displayed on screen, they must be rendered by React.
66

77
</p>
88

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

1111
- What rendering means in React
1212
- When and why React renders a component

docs/src/learn/rendering-lists.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ You will often want to display multiple similar components from a collection of
66

77
</p>
88

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

1111
- How to render components from an array using JavaScript's `map()`
1212
- How to render only specific components using JavaScript's `filter()`

docs/src/learn/responding-to-events.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ React lets you add _event handlers_ to your PSX. Event handlers are your own fun
66

77
</p>
88

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

1111
- Different ways to write an event handler
1212
- How to pass event handling logic from a parent component

docs/src/learn/reusing-logic-with-custom-hooks.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ React comes with several built-in Hooks like `useState`, `useContext`, and `useE
66

77
</p>
88

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

1111
- What custom Hooks are, and how to write your own
1212
- How to reuse logic between components

docs/src/learn/scaling-up-with-reducer-and-context.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Reducers let you consolidate a component's state update logic. Context lets you
66

77
</p>
88

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

1111
- How to combine a reducer with context
1212
- How to avoid passing state and dispatch through props

docs/src/learn/separating-events-from-effects.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Event handlers only re-run when you perform the same interaction again. Unlike e
66

77
</p>
88

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

1111
- How to choose between an event handler and an Effect
1212
- Why Effects are reactive, and event handlers are not

docs/src/learn/sharing-state-between-components.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Sometimes, you want the state of two components to always change together. To do
66

77
</p>
88

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

1111
- How to share state between components by lifting it up
1212
- What are controlled and uncontrolled components

docs/src/learn/state-a-components-memory.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Components often need to change what's on the screen as a result of an interacti
66

77
</p>
88

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

1111
- How to add a state variable with the [`useState`](/reference/react/useState) Hook
1212
- What pair of values the `useState` Hook returns

docs/src/learn/state-as-a-snapshot.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ State variables might look like regular JavaScript variables that you can read a
66

77
</p>
88

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

1111
- How setting state triggers re-renders
1212
- When and how state updates

docs/src/learn/synchronizing-with-effects.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Some components need to synchronize with external systems. For example, you migh
66

77
</p>
88

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

1111
- What Effects are
1212
- How Effects are different from events

docs/src/learn/updating-arrays-in-state.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Arrays are mutable in JavaScript, but you should treat them as immutable when yo
66

77
</p>
88

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

1111
- How to add, remove, or change items in an array in React state
1212
- How to update an object inside of an array

docs/src/learn/updating-objects-in-state.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ State can hold any kind of JavaScript value, including objects. But you shouldn'
66

77
</p>
88

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

1111
- How to correctly update an object in React state
1212
- How to update a nested object without mutating it

docs/src/learn/writing-markup-with-psx.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ _PSX_ is a syntax extension for JavaScript that lets you write HTML-like markup
1212
1313
</p>
1414
15-
!!! summary "You Will Learn"
15+
!!! summary "You will learn"
1616
1717
- Why React mixes markup with rendering logic
1818
- How PSX is different from HTML

docs/src/learn/you-might-not-need-an-effect.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Effects are an escape hatch from the React paradigm. They let you "step outside"
66

77
</p>
88

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

1111
- Why and how to remove unnecessary Effects from your components
1212
- How to cache expensive computations without Effects

docs/src/learn/your-first-component.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ _Components_ are one of the core concepts of React. They are the foundation upon
66

77
</p>
88

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

1111
- What a component is
1212
- What role components play in a React application

0 commit comments

Comments
 (0)