From f518becd4fab9d30ca8845667b402e33b80be3d7 Mon Sep 17 00:00:00 2001 From: Tim Coker Date: Tue, 25 Oct 2022 01:00:11 -0400 Subject: [PATCH] Update 07-tools.md (#4689) Tweak grammar. "Most of the time" reads better than "most of the times". --- docs/07-tools.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/07-tools.md b/docs/07-tools.md index c1bd8d8f29e..5f7d3a1340b 100755 --- a/docs/07-tools.md +++ b/docs/07-tools.md @@ -72,7 +72,7 @@ Some libraries expose ES modules that you can import as-is — `the-answer` is o The [@rollup/plugin-commonjs](https://github.com/rollup/plugins/tree/master/packages/commonjs) plugin does exactly that. -Note that most of the times `@rollup/plugin-commonjs` should go _before_ other plugins that transform your modules — this is to prevent other plugins from making changes that break the CommonJS detection. An exception for this rule is the Babel plugin, if you're using it then place it before the commonjs one. +Note that most of the time `@rollup/plugin-commonjs` should go _before_ other plugins that transform your modules — this is to prevent other plugins from making changes that break the CommonJS detection. An exception for this rule is the Babel plugin, if you're using it then place it before the commonjs one. ### Peer dependencies