Skip to content

Commit 4a98b4e

Browse files
docs: fix markdown formatting in fuses.md (#50333)
* docs: fix markdown formatting in fuses.md * Use bulleted list (was being run together on one line) * Wrap ASCII diagram in code block Co-authored-by: Ryan Zimmerman <[email protected]> * docs: apply suggestions from code review Co-authored-by: John Kleinschmidt <[email protected]> Co-authored-by: Erick Zhao <[email protected]> Co-authored-by: Ryan Zimmerman <[email protected]> * docs: fix misapplied suggestion Co-authored-by: Ryan Zimmerman <[email protected]> --------- Co-authored-by: trop[bot] <37223003+trop[bot]@users.noreply.github.com> Co-authored-by: Ryan Zimmerman <[email protected]>
1 parent 44bc2c8 commit 4a98b4e

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

docs/tutorial/fuses.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -146,13 +146,15 @@ The extra privileges granted to the `file://` protocol by this fuse are incomple
146146
The `wasmTrapHandlers` fuse controls whether V8 will use signal handlers to trap Out of Bounds memory
147147
access from WebAssembly. The feature works by surrounding the WebAssembly memory with large guard regions
148148
and then installing a signal handler that traps attempt to access memory in the guard region. The feature
149-
is only supported on the following 64-bit systems.
149+
is only supported on the following 64-bit systems:
150150

151-
Linux. MacOS, Windows - x86_64
152-
Linux, MacOS - aarch64
151+
* Linux, macOS, Windows - x86_64
152+
* Linux, macOS - aarch64
153153

154+
```text
154155
| Guard Pages | WASM heap | Guard Pages |
155156
|-----8GB-----| |-----8GB-----|
157+
```
156158

157159
When the fuse is disabled V8 will use explicit bound checks in the generated WebAssembly code to ensure
158160
memory safety. However, this method has some downsides

0 commit comments

Comments
 (0)