Skip to content

Commit 17af52b

Browse files
committed
fix: add eof
1 parent 15e6bc5 commit 17af52b

8 files changed

Lines changed: 8 additions & 9 deletions

File tree

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: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,4 +69,5 @@ function App() {
6969
</ErrorBoundary>
7070
);
7171
}
72+
7273
```

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

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -158,4 +158,5 @@ function UserProfile() {
158158
});
159159
};
160160
}
161+
161162
```

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

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

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

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

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

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

src/content/reference/react-compiler/panicThreshold.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -84,5 +84,4 @@ const isDevelopment = process.env.NODE_ENV === 'development';
8484
}
8585
}
8686
}
87-
88-
```
87+
```

0 commit comments

Comments
 (0)