Skip to content

Commit

Permalink
Merge pull request #150 from rajsite/alphabetize-languages
Browse files Browse the repository at this point in the history
Alphabetize programming language lists
  • Loading branch information
itowlson authored Aug 28, 2024
2 parents c844c93 + 1bd2cf0 commit 2fc277b
Show file tree
Hide file tree
Showing 3 changed files with 18 additions and 18 deletions.
6 changes: 3 additions & 3 deletions component-model/src/SUMMARY.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,11 +15,11 @@
# Using Component Model

- [Language Support for Components](./language-support.md)
- [Rust](./language-support/rust.md)
- [C/C++](./language-support/c.md)
- [Javascript](./language-support/javascript.md)
- [Python](./language-support/python.md)
- [Go](./language-support/go.md)
- [JavaScript](./language-support/javascript.md)
- [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)
Expand Down
16 changes: 8 additions & 8 deletions component-model/src/introduction.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,22 +4,22 @@ The WebAssembly Component Model is a broad-reaching architecture for building in

| Understanding components | Building components | Using components |
|--------------------------|----------------------|-------------------|
| [Why Components?] | [Javascript] | [Composing] |
| [Components] | [Python] | [Running] |
| [Interfaces] | [Rust] | [Distributing] |
| [Worlds] | [Go] | |
| | [C/C++][C] | |
| [Why Components?] | [C/C++][C] | [Composing] |
| [Components] | [Go] | [Running] |
| [Interfaces] | [JavaScript] | [Distributing] |
| [Worlds] | [Python] | |
| | [Rust] | |

[Why Components?]: ./design/why-component-model.md
[Components]: ./design/components.md
[Interfaces]: ./design/interfaces.md
[Worlds]: ./design/worlds.md

[Javascript]: ./language-support/javascript.md
[C]: ./language-support/c.md
[Go]: ./language-support/go.md
[JavaScript]: ./language-support/javascript.md
[Python]: ./language-support/python.md
[Rust]: ./language-support/rust.md
[Go]: ./language-support/go.md
[C]: ./language-support/c.md

[Composing]: ./creating-and-consuming/composing.md
[Running]: ./creating-and-consuming/running.md
Expand Down
14 changes: 7 additions & 7 deletions component-model/src/language-support.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,19 +20,19 @@ components within and among toolchains.
- [Language Agnostic Tooling](#language-agnostic-tooling)
- [Building a Component with `wasm-tools`](#building-a-component-with-wasm-tools)
- [Running a Component with Wasmtime](#running-a-component-with-wasmtime)
- [Serving a HTTP Component with Wasmtime](#serving-a-http-component-with-wasmtime)
- [Rust Tooling](./language-support/rust.md)
- [Building a Component with `cargo component`](./language-support/rust.md#building-a-component-with-cargo-component)
- [Running a Component from Rust Applications](./language-support/rust.md#running-a-component-from-rust-appliacations)
- [C/C++ Tooling](./language-support/c.md)
- [Building a Component with `wit-bindgen` and `wasm-tools`](./language-support/c.md#building-a-component-with-wit-bindgen-and-wasm-tools)
- [Running a Component from C/C++ Applications](./language-support/c.md#running-a-component-from-cc-applications)
- [Go Tooling](./language-support/go.md)
- [JavaScript Tooling](./language-support/javascript.md)
- [Building a Component with `jco`](./language-support/javascript.md#building-a-component-with-jco)
- [Running a Component from JavaScript Applications](./language-support/javascript.md#running-a-component-from-javascript-applications)
- [Python Tooling](./language-support/python.md)
- [Building a Component with `componentize-py`](./language-support/python.md#building-a-component-with-componentize-py)
- [Running components from Python Applications](./language-support/python.md#running-components-from-python-applications)
- [C/C++ Tooling](./language-support/c.md)
- [Building a Component with `wit-bindgen` and `wasm-tools`](./language-support/c.md#building-a-component-with-wit-bindgen-and-wasm-tools)
- [Running a Component from C/C++ Applications](./language-support/c.md#running-a-component-from-cc-applications)
- [Rust Tooling](./language-support/rust.md)
- [Building a Component with `cargo component`](./language-support/rust.md#building-a-component-with-cargo-component)
- [Running a Component from Rust Applications](./language-support/rust.md#running-a-component-from-rust-appliacations)

## Language Agnostic Tooling

Expand Down

0 comments on commit 2fc277b

Please sign in to comment.