From cec9cff3161f00bdb20b9a6cd08c8c0cad3ec049 Mon Sep 17 00:00:00 2001 From: Cong-Cong Pan Date: Fri, 6 Sep 2024 17:43:45 +0800 Subject: [PATCH] docs: fix typo in zh docs (#7820) fix: typo in docs --- website/docs/zh/api/javascript-api/index.mdx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/website/docs/zh/api/javascript-api/index.mdx b/website/docs/zh/api/javascript-api/index.mdx index 7ae40be01da..9d2a1c951bb 100644 --- a/website/docs/zh/api/javascript-api/index.mdx +++ b/website/docs/zh/api/javascript-api/index.mdx @@ -121,13 +121,13 @@ const compiler = rspack({ const watching = compiler.watch( { // 示例 - aggregateTimeout: 300, - poll: undefined, + aggregateTimeout: 300, + poll: undefined, }, (err, stats) => { // 这里打印 watch/build 结果... console.log(stats); - } + }, ); ```