Skip to content

Commit 419f9a3

Browse files
authoredNov 15, 2023
docs: fix a typo and incorrect rendering of URLs (#2991)
Signed-off-by: Peter Jausovec <[email protected]>
1 parent 648947e commit 419f9a3

File tree

3 files changed

+46
-30
lines changed

3 files changed

+46
-30
lines changed
 

‎extensions/v1alpha1/wasm.pb.go

+15-10
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎extensions/v1alpha1/wasm.pb.html

+16-10
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎extensions/v1alpha1/wasm.proto

+15-10
Original file line numberDiff line numberDiff line change
@@ -338,7 +338,7 @@ message WasmPlugin {
338338
FailStrategy fail_strategy = 13;
339339

340340
// Configuration for a Wasm VM.
341-
// more details can be found [here](https://www.envoyproxy.io/docs/envoy/latest/api-v3/extensions/wasm/v3/wasm.proto#extensions-wasm-v3-vmconfig).
341+
// More details can be found [here](https://www.envoyproxy.io/docs/envoy/latest/api-v3/extensions/wasm/v3/wasm.proto#extensions-wasm-v3-vmconfig).
342342
VmConfig vm_config = 11;
343343

344344
// TrafficSelector provides a mechanism to select a specific traffic flow
@@ -375,15 +375,20 @@ message WasmPlugin {
375375
}
376376

377377

378-
// PluginType indicates the type of Wasm Extension to be used.
379-
// There are two types of Extensions: `HTTP` and `NETWORK`.
380-
// HTTP Extension work at "Layer 7"(for example as an HTTP filters in Envoy).
381-
// The detailed HTTP interface for can be found at [C++] (https://github.com/proxy-wasm/proxy-wasm-cpp-host/blob/b7e690703c7f26707438a2f1ebd7c197bc8f0296/include/proxy-wasm/context_interface.h#L199)
382-
// and [Rust] (https://github.com/proxy-wasm/proxy-wasm-rust-sdk/blob/6b47aec926bc29971c727471d6f4c972ec407c7f/src/traits.rs#L309).
383-
// NETWORK Extension work at "Layer 4"(for example, as a network filter in Envoy).
384-
// The detailed NETWORK interface for can be found at [C++] (https://github.com/proxy-wasm/proxy-wasm-cpp-host/blob/b7e690703c7f26707438a2f1ebd7c197bc8f0296/include/proxy-wasm/context_interface.h#L257)
385-
// and [Rust] (https://github.com/proxy-wasm/proxy-wasm-rust-sdk/blob/6b47aec926bc29971c727471d6f4c972ec407c7f/src/traits.rs#L257).
386-
// The NETWORK Extension can be applied to HTTP traffic as well.
378+
// PluginType indicates the type of Wasm extension to be used.
379+
// There are two types of extensions: `HTTP` and `NETWORK`.
380+
//
381+
// The `HTTP` extension works at Layer 7 (for example, as an HTTP filter in Envoy).
382+
// The detailed HTTP interface can be found here:
383+
// - [C++](https://github.com/proxy-wasm/proxy-wasm-cpp-host/blob/b7e690703c7f26707438a2f1ebd7c197bc8f0296/include/proxy-wasm/context_interface.h#L199)
384+
// - [Rust](https://github.com/proxy-wasm/proxy-wasm-rust-sdk/blob/6b47aec926bc29971c727471d6f4c972ec407c7f/src/traits.rs#L309)
385+
//
386+
// The `NETWORK` extension works at Layer 4 (for example, as a network filter in Envoy).
387+
// The detailed `NETWORK` interface can be found here:
388+
// - [C++](https://github.com/proxy-wasm/proxy-wasm-cpp-host/blob/b7e690703c7f26707438a2f1ebd7c197bc8f0296/include/proxy-wasm/context_interface.h#L257)
389+
// - [Rust](https://github.com/proxy-wasm/proxy-wasm-rust-sdk/blob/6b47aec926bc29971c727471d6f4c972ec407c7f/src/traits.rs#L257)
390+
//
391+
// The `NETWORK` extension can be applied to HTTP traffic as well.
387392
enum PluginType {
388393
// Defaults to HTTP.
389394
UNSPECIFIED_PLUGIN_TYPE = 0;

0 commit comments

Comments
 (0)
Please sign in to comment.