From be2feec1f06e6692358670599f471433943a00d1 Mon Sep 17 00:00:00 2001 From: Dominic Saadi Date: Wed, 27 Jul 2022 15:55:06 +0900 Subject: [PATCH] doc: fix typo in packages.md "previous" read like it should be "previously" PR-URL: https://github.com/nodejs/node/pull/44005 Reviewed-By: Geoffrey Booth Reviewed-By: Feng Yu Reviewed-By: Darshan Sen Reviewed-By: Antoine du Hamel --- doc/api/packages.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/api/packages.md b/doc/api/packages.md index 02a9091206ab06..751cc626dd4647 100644 --- a/doc/api/packages.md +++ b/doc/api/packages.md @@ -257,7 +257,7 @@ likely be a breaking change.** To make the introduction of [`"exports"`][] non-breaking, ensure that every previously supported entry point is exported. It is best to explicitly specify entry points so that the package's public API is well-defined. For example, -a project that previous exported `main`, `lib`, +a project that previously exported `main`, `lib`, `feature`, and the `package.json` could use the following `package.exports`: ```json