Skip to content

Commit 28a6721

Browse files
fix: typos
Co-authored-by: Mikhail Katychev <mkatych@gmail.com>
1 parent e99de7c commit 28a6721

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,12 @@
33
This guide is a work in progress and does not have examples for all language toolchains with components support.
44

55
For languages not listed in this guide, it is often possible to create runnable components by
6-
following the main principles of the other guides, using the help of the available WebAssembly
6+
applying the core concepts found in other guides, using the help of the available WebAssembly
77
toolchain.
88

99
Generally, WebAssembly toolchains in the language in question may contain a way to:
1010

11-
1. Create a WebAssembly component with the `_start` export (a "command" compnent)
11+
1. Create a WebAssembly component with the `_start` export (a "command" component)
1212
2. Create a component that exports the `wasi:cli/run` interface
1313

1414
## Adding an Example for a Language to this Section

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
@@ -99,7 +99,7 @@ world root {
9999

100100
As the import is unfulfilled, the `calculator.wasm` component could not run by itself in its current form. The next step is to fulfill the `add` import, so that only `calculate` is exported, and the component can be run.
101101

102-
The process of fufilling imports via other component's exports is called "composition". Learn more about how to compose the calculator.wasm
102+
The process of fulfilling imports via other component's exports is called "composition". Learn more about how to compose the calculator.wasm
103103
with an adder.wasm into a single, self-contained component in the [component composition guide](../../composing-and-distributing/composing.md).
104104

105105
[!NOTE]: #

0 commit comments

Comments
 (0)