From 208ecb5fa009b2d2a98d443cff2dd2a7ea48f4c5 Mon Sep 17 00:00:00 2001
From: Dominic Saadi <dominiceliassaadi@gmail.com>
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 <webadmin@geoffreybooth.com>
Reviewed-By: Feng Yu <F3n67u@outlook.com>
Reviewed-By: Darshan Sen <raisinten@gmail.com>
Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com>
---
 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