From 11d211cbd72e318a678fde710d5b11262cea01ea Mon Sep 17 00:00:00 2001 From: linct <32163232+linct96@users.noreply.github.com> Date: Fri, 5 Jan 2024 11:53:47 +0800 Subject: [PATCH] docs(cn): fix typo --- docs/configuration-options/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/configuration-options/index.md b/docs/configuration-options/index.md index 0060442f2..963ae4da1 100755 --- a/docs/configuration-options/index.md +++ b/docs/configuration-options/index.md @@ -1851,7 +1851,7 @@ const hello = require('your-lib').hello; const { hello } = require('your-lib'); ``` -问题是,如果你使用 `named` 导出,但 _也_ 会有一个 `default` 导出,用户将不得不类似这样做来使用默认到处: +问题是,如果你使用 `named` 导出,但 _也_ 会有一个 `default` 导出,用户将不得不类似这样做来使用默认导出: ```js // your-lib 包入口