Skip to content

Commit ab97f28

Browse files
docs(packages): Allign docs and clean redaction.
1 parent 0401eb5 commit ab97f28

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

docs/pages/reference/packages.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ title: "Official packages"
33
description: "The ready-made modules maintained alongside Edge Python, what they are, where they live, and how to import them."
44
---
55

6-
Edge Python ships no bundled stdlib (see [What it is](/getting-started/what-it-is)), every module is external. This page is the catalog of the **official, ready-to-use packages** maintained alongside the compiler. You don't have to write these yourself, import them and go. To build your own, see [Writing modules](/reference/writing-modules).
6+
Edge Python ships no bundled stdlib (see [What it is](/getting-started/what-it-is)); every module is external. This page is the catalog of the **official, ready-to-use packages** maintained alongside the compiler. You don't have to write these yourself: import them and go. To build your own, see [Writing modules](/reference/writing-modules).
77

88
There are two families, matching two of the three [delivery paths](/reference/writing-modules):
99

@@ -12,11 +12,11 @@ There are two families, matching two of the three [delivery paths](/reference/wr
1212
| **Standard packages** | [`std/`](https://github.com/dylan-sutton-chavez/edge-python/tree/main/std) | `.wasm` (Rust) | Inside the WASM sandbox, any host | [Path A](/reference/writing-modules#path-a-wasm-module-by-url) |
1313
| **Host libraries** | [`host/`](https://github.com/dylan-sutton-chavez/edge-python/tree/main/host) | Plain ESM (JS) | Browser main thread | [Path C](/reference/writing-modules#path-c-js-host-module) |
1414

15-
Standard packages are host-agnostic (they run wherever WASM runs). Host libraries are browser-only, they reach `document` / `window` / `localStorage`, surfaces that don't exist in a non-browser host.
15+
Standard packages are host-agnostic (they run wherever WASM runs). Host libraries are browser-only: they reach `document` / `window` / `localStorage`, surfaces that don't exist in a non-browser host.
1616

1717
## Standard packages
1818

19-
Language-agnostic `.wasm` plugins over the [WASM module ABI](/reference/wasm-abi). Import by bare name (the browser runtime resolves the official ones by default, see [Defaults](#defaults)), by URL, or via a `packages.json` alias; the host fetches the `.wasm` and treats its exports as native bindings.
19+
Language-agnostic `.wasm` plugins over the [WASM module ABI](/reference/wasm-abi). Import by bare name (the browser runtime resolves the official ones by default; see [Defaults](#defaults)), by URL, or via a `packages.json` alias; the host fetches the `.wasm` and treats its exports as native bindings.
2020

2121
### `json`
2222

0 commit comments

Comments
 (0)