DOCS Fix Typos (#2656)

Fixed 2 typos.
This commit is contained in:
Ryan Russell 2022-05-31 18:06:06 -05:00 committed by GitHub
parent cabf75516b
commit 42d33407ca
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -81,7 +81,7 @@ We compose `TsAnalyzer` into `PyodideAnalyzer`. This prunes out private
functions, marks functions as `async` so we can display `async` in front of
them, and organizes functions into our three categories:
- `globalThis`: globaly exposed functions
- `globalThis`: globally exposed functions
- `pyodide`: pyodide APIs
- `PyProxy`: `PyProxy` APIs

View File

@ -67,7 +67,7 @@ self.addEventListener("message", (msg) => {
The interrupt system above allows interruption of Python code and also of C code
that opts to allow itself to be interrupted by periodically calling
`PyErr_CheckSignals`. There is also a function {any}`pyodide.checkInterrupt` that
allows JavasSript functions called from Python to check for an interrupt. As a
allows JavaScript functions called from Python to check for an interrupt. As a
simple example, we can implement an interruptible sleep function using
`Atomics.wait`: