From 7e3b3dff53ea5a10dbe72cc8012336911cbe0e84 Mon Sep 17 00:00:00 2001 From: macovedj Date: Tue, 17 Jun 2025 15:31:20 -0500 Subject: [PATCH] remove 6.1 'Authoring Components' section --- component-model/src/SUMMARY.md | 1 - component-model/src/creating-and-consuming/authoring.md | 5 ----- component-model/src/tutorial.md | 6 ++---- 3 files changed, 2 insertions(+), 10 deletions(-) delete mode 100644 component-model/src/creating-and-consuming/authoring.md diff --git a/component-model/src/SUMMARY.md b/component-model/src/SUMMARY.md index cb1af074..41e78417 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 4e207188..00000000 --- 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 c4f35428..e55b3bd4 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