Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs(ses): Fix typos in lockdown.md #2662

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions packages/ses/docs/lockdown.md
Original file line number Diff line number Diff line change
Expand Up @@ -320,7 +320,7 @@ However, with SES with the `'safe'` or `'unsafe'` settings of
which is the one line of JavaScript the TypeScript compiled to.
We would like to fix this while preserving safety, but have not yet done so.

Instead, we introduce the `'unsafe-debug'` setting, which sarifices
Instead, we introduce the `'unsafe-debug'` setting, which sacrifices
more security to restore this pleasant Node behavior.
Where `'safe'` and `'unsafe'` endangers only confidentiality, `'unsafe-debug'` also
endangers intergrity. For development and debugging purposes ***only***,
Expand Down Expand Up @@ -480,7 +480,7 @@ lockdown({ reporting: 'console' });
lockdown({ reporting: 'none' });
```

If `lockdown` does not receive an `reporting` option, it will respect
If `lockdown` does not receive a `reporting` option, it will respect
`process.env.LOCKDOWN_REPORTING`.

```console
Expand Down Expand Up @@ -852,7 +852,7 @@ mistake, set the options as follows:
}
```

If `lockdown` does not receive a `regExpTaming` option, it will respect
If `lockdown` does not receive an `overrideDebug` option, it will respect
`process.env.LOCKDOWN_OVERRIDE_DEBUG`, a comma-separated list of property names
on shared intrinsics to replace with debugger accessors.

Expand Down
Loading