Skip to content

Commit a6c9a59

Browse files
assambarereslibre
andauthored
Apply suggestions from code review
Co-authored-by: Rafael Fernández López <[email protected]>
1 parent b1c7bb7 commit a6c9a59

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

php/php-8.1.11/README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,13 +4,13 @@ This contains a non-exhaustive list of changes that we had to make to be able to
44

55
To remove or add code for wasm32-wasi builds we are using the 'WASM_WASI' macro.
66

7-
# emulated functionality
7+
# Emulated functionality
88

99
We are using emulation of getpid, signals and clocks.
1010

1111
We are not using mman emulation due to the reasons outlined [below](#mmap-support).
1212

13-
# excluded code
13+
# Excluded code
1414

1515
This describes the most common places where we needed to exclude code because
1616
a method or constant is not available or is somehow different with WASI.
@@ -23,7 +23,7 @@ Thus there is no support for a FIFO filetype. So the two constants were
2323
defined to the same value. Because of this a switch/case on file type will fail
2424
due to duplicate case labels.
2525

26-
We've commented out the S_IFFIFO cases.
26+
We've commented out the S_IFIFO cases.
2727

2828
## setjmp and longjmp
2929

@@ -43,7 +43,7 @@ Additionally sqlite3 had to be modified in some ways for WASM_WASI builds:
4343
- use "dotlockIoFinder" for file locking
4444
- skip sqlite3_finalize
4545

46-
## unsupported posix methods
46+
## Unsupported posix methods
4747

4848
We have stubbed the posix methods in `ext/posix/posix.c` which are not supported for WASI.
4949

0 commit comments

Comments
 (0)