Skip to content

Commit a74346f

Browse files
committed
docs: update nextjs documentation
1 parent 2acc8ec commit a74346f

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

apps/docs/content/en/docs/01-app/01-getting-started/06-css.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ CSS Modules locally scope CSS by generating unique class names. This allows you
2828

2929
To start using CSS Modules, create a new file with the extension `.module.css` and import it into any component inside the `app` directory:
3030

31-
```css filename="app/blog/styles.module.css"
31+
```css filename="app/blog/blog.module.css"
3232
.blog {
3333
padding: 24px;
3434
}

apps/docs/content/en/docs/01-app/03-building-your-application/02-data-fetching/03-server-actions-and-mutations.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -678,7 +678,7 @@ export default function ViewCount({ initialViews }: { initialViews: number }) {
678678
const [isPending, startTransition] = useTransition()
679679

680680
useEffect(() => {
681-
starTransition(async () => {
681+
startTransition(async () => {
682682
const updatedViews = await incrementViews()
683683
setViews(updatedViews)
684684
})

0 commit comments

Comments
 (0)