From 840b6349ee86ad9f74b3d6a605ea21ce51e2240e Mon Sep 17 00:00:00 2001 From: Tim Coker Date: Sun, 23 Oct 2022 15:46:45 -0400 Subject: [PATCH] Update 07-tools.md 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