Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/content/learn/manipulating-the-dom-with-refs.md
Original file line number Diff line number Diff line change
Expand Up @@ -137,14 +137,14 @@ export default function CatFriends() {
<ul>
<li>
<img
src="https://placekitten.com/g/200/200"
src="https://placekitten.com/200/200"
alt="Tom"
ref={firstCatRef}
/>
</li>
<li>
<img
src="https://placekitten.com/g/300/200"
src="https://placekitten.com/300/200"
alt="Maru"
ref={secondCatRef}
/>
Expand Down
2 changes: 1 addition & 1 deletion src/content/reference/react-dom/components/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ They are special in React because passing the `value` prop to them makes them *[

## Resource and Metadata Components {/*resource-and-metadata-components*/}

These bulit-in browser components let you load external resources or annotate the document with metadata:
These built-in browser components let you load external resources or annotate the document with metadata:

* [`<link>`](/reference/react-dom/components/link)
* [`<meta>`](/reference/react-dom/components/meta)
Expand Down
4 changes: 2 additions & 2 deletions src/content/reference/react/useRef.md
Original file line number Diff line number Diff line change
Expand Up @@ -340,13 +340,13 @@ export default function CatFriends() {
<ul ref={listRef}>
<li>
<img
src="https://placekitten.com/g/200/200"
src="https://placekitten.com/200/200"
alt="Tom"
/>
</li>
<li>
<img
src="https://placekitten.com/g/300/200"
src="https://placekitten.com/300/200"
alt="Maru"
/>
</li>
Expand Down