diff --git a/examples/nextjs-with-typescript-v4-migration/pages/_document.tsx b/examples/nextjs-with-typescript-v4-migration/pages/_document.tsx index eff5c47e478538..cd27da44036b1f 100644 --- a/examples/nextjs-with-typescript-v4-migration/pages/_document.tsx +++ b/examples/nextjs-with-typescript-v4-migration/pages/_document.tsx @@ -105,7 +105,7 @@ MyDocument.getInitialProps = async (ctx) => { /> )); - // Gemerate the css string for the styles coming from jss + // Generate the css string for the styles coming from jss let css = jssSheets.toString(); // It might be undefined, e.g. after an error. if (css && process.env.NODE_ENV === 'production') {