Skip to content

Commit 7594002

Browse files
authored
Correct some wrong English grammar. NFC (#22106)
1 parent 3114f02 commit 7594002

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

ChangeLog.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1249,7 +1249,7 @@ See docs/process.md for more on how version tagging works.
12491249
their own secondary sysroot may be able to simplify their build system by
12501250
removing this completely and relying on the new default.
12511251
- Reinstated the warning on linker-only `-s` settings passed when not linking
1252-
(i.e. when compiling with `-c`). As before this can disabled with
1252+
(i.e. when compiling with `-c`). As before this can be disabled with
12531253
`-Wno-unused-command-line-argument` (#14182).
12541254
- Standalone wasm mode no longer does extra binaryen work during link. It used
12551255
to remove unneeded imports, in hopes of avoiding nonstandard imports that

site/source/docs/tools_reference/settings_reference.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ CHECK_NULL_WRITES
5353
When STACK_OVERFLOW_CHECK is enabled we also check writes to address zero.
5454
This can help detect NULL pointer usage. If you want to skip this extra
5555
check (for example, if you want reads from the address zero to always return
56-
zero) you can disabled this here. This setting has no effect when
56+
zero) you can disable this here. This setting has no effect when
5757
STACK_OVERFLOW_CHECK is disabled.
5858

5959
Default value: true

src/settings.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ var STACK_OVERFLOW_CHECK = 0;
6868
// When STACK_OVERFLOW_CHECK is enabled we also check writes to address zero.
6969
// This can help detect NULL pointer usage. If you want to skip this extra
7070
// check (for example, if you want reads from the address zero to always return
71-
// zero) you can disabled this here. This setting has no effect when
71+
// zero) you can disable this here. This setting has no effect when
7272
// STACK_OVERFLOW_CHECK is disabled.
7373
var CHECK_NULL_WRITES = true;
7474

0 commit comments

Comments
 (0)