Skip to content

Commit

Permalink
doc: fix some policy scope typos
Browse files Browse the repository at this point in the history
PR-URL: #51234
Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com>
Reviewed-By: Marco Ippolito <marcoippolito54@gmail.com>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Tobias Nießen <tniessen@tnie.de>
Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
  • Loading branch information
timkuijsten authored and targos committed Feb 15, 2024
1 parent e0789fb commit 74d4e38
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions doc/api/permissions.md
Expand Up @@ -178,7 +178,7 @@ different strings to point to the same module (such as excluding the extension).

Specifier strings are canonicalized but not resolved prior to be used for
matching in order to have some compatibility with import maps, for example if a
resource `file:///C:/app/server.js` was given the following redirection from a
resource `file:///C:/app/utils.js` was given the following redirection from a
policy located at `file:///C:/app/policy.json`:

```json
Expand Down Expand Up @@ -303,15 +303,15 @@ delegate to the next relevant scope for `file:///C:/app/bin/main.js`, `"file:"`.

This determines the policy for all file based resources within `"file:///C:/"`.
This is not in the `"scopes"` field of the policy and would be skipped. It would
not be used for `file:///C:/app/bin/main.js` unless `"file:///"` is set to
cascade or is not in the `"scopes"` of the policy.
not be used for `file:///C:/app/bin/main.js` unless `"file:///C:/app/"` is set
to cascade or is not in the `"scopes"` of the policy.

4. `"file:///"`

This determines the policy for all file based resources on the `localhost`. This
is not in the `"scopes"` field of the policy and would be skipped. It would not
be used for `file:///C:/app/bin/main.js` unless `"file:///"` is set to cascade
or is not in the `"scopes"` of the policy.
be used for `file:///C:/app/bin/main.js` unless `"file:///C:/"` is set to
cascade or is not in the `"scopes"` of the policy.

5. `"file:"`

Expand Down

0 comments on commit 74d4e38

Please sign in to comment.