fix: remove duplicated word in sentence ("direct direct")

This commit is contained in:
Aldo Ridhoni 2025-11-05 10:43:10 +07:00 committed by GitHub
parent 1fcf35d43f
commit 5c93c77a6c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -192,8 +192,8 @@ Examples: ls watch uptime head /proc/cpuinfo
<h2>How does this differ from previous attempts?</h2> <h2>How does this differ from previous attempts?</h2>
<p> <p>
Linux in the browser has been done a few times before, either by slow emulation of other architectures in Wasm or Linux in the browser has been done a few times before, either by slow emulation of other architectures in Wasm or
even pure JavaScript, or by running Linux as a library (LKL aka. um). Such attempts have inspired this more direct even pure JavaScript, or by running Linux as a library (LKL aka. um). Such attempts have inspired this more direct
direct approach. The goal is to expose the syscalls that the Linux kernel provides. This should allow porting of approach. The goal is to expose the syscalls that the Linux kernel provides. This should allow porting of
many more programs than possible with WASI or the current generation of Emscripten. Note that a program does not many more programs than possible with WASI or the current generation of Emscripten. Note that a program does not
necessarily have to run as a process inside Linux either, you could have just one (or a few) frontend threads that necessarily have to run as a process inside Linux either, you could have just one (or a few) frontend threads that
you use for syscalls, possibly via some kind of message passing. This way, your program does not have to live you use for syscalls, possibly via some kind of message passing. This way, your program does not have to live