Skip to content

Commit c75ba4c

Browse files
committed
fix: text lint error
1 parent 76e497e commit c75ba4c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/content/blog/2025/10/01/react-19-2.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ function ChatRoom({ roomId, theme }) {
9696
// ...
9797
```
9898
99-
Similar to DOM events, Effect Events always see the latest props and state.
99+
Similar to DOM events, Effect Events always "see" the latest props and state.
100100
101101
**Effect Events should _not_ be declared in the dependency array**. You'll need to upgrade to `eslint-plugin-react-hooks@latest` so that the linter doesn't try to insert them as dependencies. Note that Effect Events can only be declared in the same component or Hook as "their" Effect. These restrictions are verified by the linter.
102102

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ title: resumeToPipeableStream
44

55
<Intro>
66

7-
`resumeToPipeableStream` streams a pre-rendered React tree to a pipeable [Node.js Stream.](https://nodejs.org/api/stream.html)
7+
`resumeToPipeableStream` streams a pre-rendered React tree to a pipeable [Node.js Stream.](https://nodejs.org/api/stream.html)
88

99
```js
1010
const {pipe, abort} = await resumeToPipeableStream(reactNode, postponedState, options?)

0 commit comments

Comments
 (0)