Skip to content

Commit e2a749c

Browse files
committed
fix: link
1 parent 26bcd44 commit e2a749c

File tree

21 files changed

+24
-24
lines changed

21 files changed

+24
-24
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/learn/react-compiler/debugging.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,4 +90,4 @@ If you believe you've found a compiler bug:
9090
## Next Steps {/*next-steps*/}
9191

9292
- Review the [Rules of React](/reference/rules) to prevent issues
93-
- Check the [incremental adoption guide](/learn/react-compiler/incremental-adoption) for gradual rollout strategies
93+
- Check the [incremental adoption guide](/learn/react-compiler/incremental-adoption) for gradual rollout strategies

src/content/learn/react-compiler/incremental-adoption.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -222,4 +222,4 @@ If you encounter issues during adoption:
222222

223223
- Read the [configuration guide](/reference/react-compiler/configuration) for more options
224224
- Learn about [debugging techniques](/learn/react-compiler/debugging)
225-
- Check the [API reference](/reference/react-compiler/configuration) for all compiler options
225+
- Check the [API reference](/reference/react-compiler/configuration) for all compiler options

src/content/reference/eslint-plugin-react-hooks/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,4 +37,4 @@ These rules are included in the `recommended` preset in `eslint-plugin-react-hoo
3737
* [`set-state-in-render`](/reference/eslint-plugin-react-hooks/lints/set-state-in-render) - Validates against setting state during render
3838
* [`static-components`](/reference/eslint-plugin-react-hooks/lints/static-components) - Validates that components are static, not recreated every render
3939
* [`unsupported-syntax`](/reference/eslint-plugin-react-hooks/lints/unsupported-syntax) - Validates against syntax that React Compiler does not support
40-
* [`use-memo`](/reference/eslint-plugin-react-hooks/lints/use-memo) - Validates usage of the `useMemo` hook without a return value
40+
* [`use-memo`](/reference/eslint-plugin-react-hooks/lints/use-memo) - Validates usage of the `useMemo` hook without a return value

src/content/reference/eslint-plugin-react-hooks/lints/error-boundaries.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,4 +69,5 @@ function App() {
6969
</ErrorBoundary>
7070
);
7171
}
72-
```
72+
73+
```

src/content/reference/eslint-plugin-react-hooks/lints/immutability.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -158,4 +158,5 @@ function UserProfile() {
158158
});
159159
};
160160
}
161-
```
161+
162+
```

src/content/reference/eslint-plugin-react-hooks/lints/preserve-manual-memoization.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,4 +90,4 @@ function Component({items, sortBy}) {
9090

9191
return <List items={sorted} />;
9292
}
93-
```
93+
```

src/content/reference/eslint-plugin-react-hooks/lints/purity.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,4 +80,4 @@ function Clock() {
8080

8181
return <div>Current time: {time}</div>;
8282
}
83-
```
83+
```

src/content/reference/eslint-plugin-react-hooks/lints/static-components.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -100,4 +100,4 @@ function Parent() {
100100

101101
If you find yourself wanting to define components inside other components to access local variables, that's a sign you should be passing props instead. This makes components more reusable and testable.
102102

103-
</Note>
103+
</Note>

src/content/reference/eslint-plugin-react-hooks/lints/unsupported-syntax.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,4 +99,4 @@ function Calculator({expression}) {
9999

100100
Never use `eval` with user input - it's a security risk. Use dedicated parsing libraries for specific use cases like mathematical expressions, JSON parsing, or template evaluation.
101101

102-
</Note>
102+
</Note>

0 commit comments

Comments
 (0)