Skip to content

remove 6.1 'Authoring Components' section #267

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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
1 change: 0 additions & 1 deletion component-model/src/SUMMARY.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down
5 changes: 0 additions & 5 deletions component-model/src/creating-and-consuming/authoring.md

This file was deleted.

6 changes: 2 additions & 4 deletions component-model/src/tutorial.md
Original file line number Diff line number Diff line change
Expand Up @@ -79,17 +79,15 @@ 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
[example](https://github.com/bytecodealliance/component-docs/tree/main/component-model/examples/tutorial/adder/).

## 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
Expand Down