From ef4e3b5f69450fc18eea6bdfbf8b2b9d4286e55c Mon Sep 17 00:00:00 2001 From: Guy Bedford Date: Mon, 31 Aug 2020 11:40:55 -0700 Subject: [PATCH] doc: error code fix in resolver spec PR-URL: https://github.com/nodejs/node/pull/34998 Reviewed-By: Jan Krems Reviewed-By: Myles Borins Reviewed-By: Ujjwal Sharma --- doc/api/esm.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/api/esm.md b/doc/api/esm.md index 32713f09d301fb..160a6633d7d362 100644 --- a/doc/api/esm.md +++ b/doc/api/esm.md @@ -1038,7 +1038,7 @@ _conditions_) > 1. Otherwise, throw an _Invalid Package Target_ error. > 1. If _target_ split on _"/"_ or _"\\"_ contains any _"."_, _".."_ or > _"node_modules"_ segments after the first segment, throw an -> _Invalid Module Specifier_ error. +> _Invalid Package Target_ error. > 1. Let _resolvedTarget_ be the URL resolution of the concatenation of > _packageURL_ and _target_. > 1. Assert: _resolvedTarget_ is contained in _packageURL_.