Skip to content

Commit 968bbfe

Browse files
authored
Fix spelling mistakes. NFC (#22835)
1 parent 5ed0fab commit 968bbfe

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

system/lib/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Source code for C/C++ system libaries
44
This directory contains the source code for libc, libc++ and other C/C++ system
55
libraries. Where possible these are clones of upstream projects (e.g. musl).
66
For more details about each library see the individual readme files in the
7-
subdirectoris.
7+
subdirectories.
88

99
Static constructor ordering
1010
---------------------------

system/lib/libc/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,6 @@ Some changes have been made to the version that was taken from upstream, includi
1313
* Simplify stdout stream handling: do not support seeking, terminal handling, etc., as it just increases code size and Emscripten doesn't have those features anyhow.
1414
* Setting `_POSIX_REALTIME_SIGNALS` and `_POSIX_SPAWN` macros to -1, to exclude unsupported functions.
1515

16-
Copy log.c and log2.c from ealier version of musl which result in smaller
16+
Copy log.c and log2.c from earlier version of musl which result in smaller
1717
binary size since they do not rely data tables in log_data.c and log2_data.c.
1818
See https://github.com/emscripten-core/emscripten/issues/15483.

system/lib/libc/emscripten_libc_stubs.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
* University of Illinois/NCSA Open Source License. Both these licenses can be
55
* found in the LICENSE file.
66
*
7-
* Fake/stub implemenations of libc functions.
8-
* See emscripten_syscall_stubs.c for fake/stub implemenations of syscalls.
7+
* Fake/stub implementations of libc functions.
8+
* See emscripten_syscall_stubs.c for fake/stub implementations of syscalls.
99
*/
1010

1111
#include <errno.h>

system/lib/libc/emscripten_syscall_stubs.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
* University of Illinois/NCSA Open Source License. Both these licenses can be
55
* found in the LICENSE file.
66
*
7-
* Unimplemented/dummy syscall implemenations. These fall into 3 catagories.
7+
* Unimplemented/dummy syscall implementations. These fall into 3 catagories.
88
*
99
* 1. Fake it, use dummy/placeholder values and return success.
1010
* 2. Fake it, as above but warn at runtime if called.

system/lib/wasmfs/emscripten.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
// This file contains implementations of emscripten APIs that are compatible
88
// with WasmFS. These replace APIs in src/library*js, and basically do things
99
// in a simpler manner for the situation where the FS is in wasm and not JS
10-
// (in particular, these implemenations avoid calling from JS to wasm, and
10+
// (in particular, these implementations avoid calling from JS to wasm, and
1111
// dependency issues that arise from that).
1212
//
1313

0 commit comments

Comments
 (0)