From 2476996f6184694a9ee9f7a2a2f73963a54d2fc8 Mon Sep 17 00:00:00 2001 From: Winme Date: Thu, 23 Jun 2022 14:25:12 +0800 Subject: [PATCH] [examples] Fix comment typo (#33256) 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') {