From 860449cc97e7a04e74b5960d60dcfb8b6a75cdaa Mon Sep 17 00:00:00 2001 From: Winme Date: Wed, 22 Jun 2022 20:06:47 +0800 Subject: [PATCH] fix: comment typo --- .../nextjs-with-typescript-v4-migration/pages/_document.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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') {