Skip to content

Commit dbd2cf3

Browse files
committed
docs: fix typo and small updates
1 parent 040e3c1 commit dbd2cf3

2 files changed

Lines changed: 4 additions & 8 deletions

File tree

.github/workflows/python-ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
runs-on: ubuntu-latest
1414
steps:
1515
- uses: actions/checkout@v4
16-
- name: Setup Rust Toolchain
16+
- name: Set Up Rust Toolchain
1717
uses: actions-rust-lang/setup-rust-toolchain@v1
1818
with:
1919
toolchain: '1.86.0'

README.md

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -21,13 +21,6 @@ Currently, this demonstrates…
2121
native-code compression stdlibs which haven't been compiled against WASI yet.
2222
Moving componentize-py to a new Python may help, as [WASIp1 is now a Tier 2
2323
supported platform](https://peps.python.org/pep-0011/#tier-2).
24-
* It crashes every time something tries to write to stdout or stderr. It may be
25-
that those aren't in the preopens; adding those to the preopens should be
26-
possible with changes to Viceroy. We're also using `--stub-wasi` at the
27-
moment, which means things like `fd_write` are coded to immediately trap; that
28-
probably doesn't help. Finally, it may be possible to monkeypatch in Python
29-
and redirect them to a logging endpoint, but our initial attempts were
30-
unsuccessful.
3124

3225
# Install Dependencies
3326

@@ -66,4 +59,7 @@ make format-check
6659

6760
# Run linting
6861
make lint
62+
63+
# Run linting and apply automatic fixes
64+
make lint-fix
6965
```

0 commit comments

Comments
 (0)