diff --git a/docs/tutorial/05-react.mdx b/docs/tutorial/05-react.mdx index e3ebe246..397ef032 100644 --- a/docs/tutorial/05-react.mdx +++ b/docs/tutorial/05-react.mdx @@ -157,7 +157,7 @@ export const TaskList: React.FC<{ // highlight-start const [doc, changeDoc] = useDocument(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, }); @@ -230,7 +230,7 @@ export const TaskList: React.FC<{ }> = ({ docUrl }) => { const [doc, changeDoc] = useDocument(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, });