Skip to content

Commit e919fe2

Browse files
fix(pl/rust): typos
1 parent 1cba12f commit e919fe2

File tree

3 files changed

+3
-3
lines changed
  • component-model/src/language-support
    • building-a-simple-component
    • creating-runnable-components
    • importing-and-reusing-components

3 files changed

+3
-3
lines changed

component-model/src/language-support/building-a-simple-component/rust.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -232,7 +232,7 @@ package docs:adder@0.1.0 {
232232

233233
## 8. Running the `adder` Component
234234

235-
To verify that our component works, lets run it from a Rust application that knows how to run a
235+
To verify that our component works, let's run it from a Rust application that knows how to run a
236236
component targeting the [`adder` world](#adding-the-wit-world).
237237

238238
The application uses [`wasmtime`][crates-wasmtime] to generate Rust "host"/"embedder" bindings,

component-model/src/language-support/creating-runnable-components/rust.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ using `wkg`:
5656
wkg wit fetch
5757
```
5858

59-
At this point, you should have a `wit` folder with a `deps` subfolder and yoru original `component.wit`.
59+
At this point, you should have a `wit` folder with a `deps` subfolder and your original `component.wit`.
6060

6161
[!WARNING]: #
6262

component-model/src/language-support/importing-and-reusing-components/rust.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ custom `wkg.toml` to our project:
3737
```
3838

3939
After adding this configuration file, when we run `wkg wit fetch`, `wkg` will assume that the package `docs:adder` can be found
40-
at the path that is given, and will pull it's contents into the local project under `wit/deps`.
40+
at the path that is given, and will pull its contents into the local project under `wit/deps`.
4141

4242

4343
### Calling the import from Rust

0 commit comments

Comments
 (0)