Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 18 additions & 0 deletions .github/workflows/typos.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: typos

on:
pull_request:
push:
branches: [main]

permissions:
contents: read

jobs:
typos:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2

- name: Check spelling
uses: crate-ci/typos@8a48f81b6c64dcfea44b3633223084c4be58ac5f # v1.49.0
2 changes: 2 additions & 0 deletions _typos.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
[default.extend-words]
BA = "BA"
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ curl https://wasmtime.dev/install.sh -sSf | bash

[wasmtime]: https://github.com/bytecodealliance/wasmtime#installation

## 2. Creating a Rust WebAssemly project
## 2. Creating a Rust WebAssembly project

Create a new Rust project with `cargo new`:

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ Building the component as is creates a WebAssembly component with an *unsatisfie
After building the component, it must be [composed with a `.wasm` component that implements the resource.](../../composing-and-distributing/composing.md). After composition creates a component with no unsatisfied imports, the composed command component can be run with `wasmtime run`.

Alternatively, a host that can provide the `docs:rpn/types` import (and related resource) can also be used to run the component
in it's "incomplete" state (as the host will "complete" the componnt by providing the expected import).
in it's "incomplete" state (as the host will "complete" the component by providing the expected import).

## Implementing and exporting a resource implementation in a host

Expand Down
Loading