@@ -933,9 +933,9 @@ The resolver can throw the following errors:
933
933
> 2. If _resolved_ is not **null** or **undefined**, return _resolved_.
934
934
> 3. Otherwise, if _exports_ is an Object and all keys of _exports_ start with
935
935
> _"."_, then
936
- > 1. Let _matchKey_ be the string _"./"_ concatenated with _subpath_ .
936
+ > 1. Assert: _subpath_ begins with _"./"_.
937
937
> 2. Let _resolved_ be the result of **PACKAGE\_ IMPORTS\_ EXPORTS\_ RESOLVE**(
938
- > _matchKey_ , _exports_, _packageURL_, **false**, _conditions_).
938
+ > _subpath_ , _exports_, _packageURL_, **false**, _conditions_).
939
939
> 3. If _resolved_ is not **null** or **undefined**, return _resolved_.
940
940
> 4. Throw a _Package Path Not Exported_ error.
941
941
@@ -1015,7 +1015,7 @@ _isImports_, _conditions_)
1015
1015
> Package Target_ error.
1016
1016
> 3. Let _resolvedTarget_ be the URL resolution of the concatenation of
1017
1017
> _packageURL_ and _target_.
1018
- > 4. Assert: _resolvedTarget_ is contained in _packageURL_ .
1018
+ > 4. Assert: _packageURL_ is contained in _resolvedTarget_ .
1019
1019
> 5. If _patternMatch_ is **null**, then
1020
1020
> 1. Return _resolvedTarget_.
1021
1021
> 6. If _patternMatch_ split on _"/"_ or _"\\ "_ contains any _""_, _"."_,
@@ -1024,7 +1024,7 @@ _isImports_, _conditions_)
1024
1024
> 7. Return the URL resolution of _resolvedTarget_ with every instance of
1025
1025
> _"\* "_ replaced with _patternMatch_.
1026
1026
> 2. Otherwise, if _target_ is a non-null Object, then
1027
- > 1. If _exports_ contains any index property keys, as defined in ECMA-262
1027
+ > 1. If _target_ contains any index property keys, as defined in ECMA-262
1028
1028
> [6.1.7 Array Index][], throw an _Invalid Package Configuration_ error.
1029
1029
> 2. For each property _p_ of _target_, in object insertion order as,
1030
1030
> 1. If _p_ equals _"default"_ or _conditions_ contains an entry for _p_,
0 commit comments