diff --git a/component-model/src/SUMMARY.md b/component-model/src/SUMMARY.md index cb1af07..41e7841 100644 --- a/component-model/src/SUMMARY.md +++ b/component-model/src/SUMMARY.md @@ -23,7 +23,6 @@ - [Python](./language-support/python.md) - [Rust](./language-support/rust.md) - [Creating and Consuming Components](./creating-and-consuming.md) - - [Authoring Components](./creating-and-consuming/authoring.md) - [Composing Components](./creating-and-consuming/composing.md) - [Running Components](./creating-and-consuming/running.md) - [Distributing and Fetching Components and WIT](./creating-and-consuming/distributing.md) diff --git a/component-model/src/creating-and-consuming/authoring.md b/component-model/src/creating-and-consuming/authoring.md deleted file mode 100644 index 4e20718..0000000 --- a/component-model/src/creating-and-consuming/authoring.md +++ /dev/null @@ -1,5 +0,0 @@ -# Authoring Components - -You can write WebAssembly core modules in a wide variety of languages, and the set of languages that can directly create components is growing. See the [Language Support](../language-support.md) section for information on building components directly from source code. - -If your preferred language supports WebAssembly but not components, you can still create components using the [`wasm-tools component`](https://github.com/bytecodealliance/wasm-tools/tree/main/crates/wit-component) tool. (A future version of this page will cover this in more detail.) \ No newline at end of file diff --git a/component-model/src/tutorial.md b/component-model/src/tutorial.md index c4f3542..e55b3bd 100644 --- a/component-model/src/tutorial.md +++ b/component-model/src/tutorial.md @@ -79,8 +79,7 @@ These files define: ## Create an `add` component -Reference the [language guide](language-support.md) and [authoring components -documentation](creating-and-consuming/authoring.md) to create a component that implements the +Reference the [language guide](language-support.md) to create a component that implements the `adder` world of `adder/wit/world.wit`. For reference, see the completed @@ -88,8 +87,7 @@ For reference, see the completed ## Create a `calculator` component -Reference the [language guide](language-support.md) and [authoring components -documentation](creating-and-consuming/authoring.md) to create a component that implements the +Reference the [language guide](language-support.md) to create a component that implements the `calculator` world of `wit/calculator/world.wit`. For reference, see the completed