Skip to content
This repository was archived by the owner on Oct 17, 2025. It is now read-only.
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/tutorial/05-react.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ export const TaskList: React.FC<{
// highlight-start
const [doc, changeDoc] = useDocument<TaskList>(docUrl, {
// This hooks the `useDocument` into reacts suspense infrastructure so the whole component
// only renderes once the document is loaded
// only renders once the document is loaded
suspense: true,
});

Expand Down Expand Up @@ -230,7 +230,7 @@ export const TaskList: React.FC<{
}> = ({ docUrl }) => {
const [doc, changeDoc] = useDocument<TaskList>(docUrl, {
// This hooks the `useDocument` into reacts suspense infrastructure so the whole component
// only renderes once the document is loaded
// only renders once the document is loaded
suspense: true,
});

Expand Down