Skip to content

Commit 3e20b7d

Browse files
committed
Fix wrong link targets in react-dom docs
1 parent 383a1e9 commit 3e20b7d

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

src/content/blog/2023/03/16/introducing-react-dev.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -462,7 +462,7 @@ In the [API Reference](/reference/react), every React API now has a dedicated pa
462462
- Built-in Hooks like [`useState`](/reference/react/useState).
463463
- Built-in components like [`<Suspense>`](/reference/react/Suspense).
464464
- Built-in browser components like [`<input>`](/reference/react-dom/components/input).
465-
- Framework-oriented APIs like [`renderToPipeableStream`](/reference/react-dom/server/renderToReadableStream).
465+
- Framework-oriented APIs like [`renderToPipeableStream`](/reference/react-dom/server/renderToPipeableStream).
466466
- Other React APIs like [`memo`](/reference/react/memo).
467467

468468
You'll notice that every API page is split into at least two segments: *Reference* and *Usage*.

src/content/reference/react-dom/client/hydrateRoot.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ Calling `root.unmount` will unmount all the components in the root and "detach"
123123
124124
### Hydrating server-rendered HTML {/*hydrating-server-rendered-html*/}
125125
126-
If your app's HTML was generated by [`react-dom/server`](/reference/react-dom/client/createRoot), you need to *hydrate* it on the client.
126+
If your app's HTML was generated by [`react-dom/server`](/reference/react-dom/server), you need to *hydrate* it on the client.
127127
128128
```js [[1, 3, "document.getElementById('root')"], [2, 3, "<App />"]]
129129
import { hydrateRoot } from 'react-dom/client';

src/content/reference/react-dom/server/resumeToPipeableStream.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ const {pipe, abort} = await resumeToPipeableStream(reactNode, postponedState, op
1616
1717
<Note>
1818
19-
This API is specific to Node.js. Environments with [Web Streams,](https://developer.mozilla.org/en-US/docs/Web/API/Streams_API) like Deno and modern edge runtimes, should use [`resume`](/reference/react-dom/server/renderToReadableStream) instead.
19+
This API is specific to Node.js. Environments with [Web Streams,](https://developer.mozilla.org/en-US/docs/Web/API/Streams_API) like Deno and modern edge runtimes, should use [`resume`](/reference/react-dom/server/resume) instead.
2020
2121
</Note>
2222

0 commit comments

Comments
 (0)