diff --git a/docs/modules/components/pages/processors/wasm.adoc b/docs/modules/components/pages/processors/wasm.adoc index 214f72d99a..3c6f91fe70 100644 --- a/docs/modules/components/pages/processors/wasm.adoc +++ b/docs/modules/components/pages/processors/wasm.adoc @@ -35,7 +35,7 @@ wasm: This processor uses https://github.com/tetratelabs/wazero[Wazero^] to execute a WASM module (with support for WASI), calling a specific function for each message being processed. From within the WASM module it is possible to query and mutate the message being processed via a suite of functions exported to the module. -This ecosystem is delicate as WASM doesn't have a single clearly defined way to pass strings back and forth between the host and the module. In order to remedy this we're gradually working on introducing libraries and examples for multiple languages which can be found in https://github.com/{project-github}/tree/main/public/wasm/README.md[the codebase^]. +This ecosystem is delicate as WASM doesn't have a single clearly defined way to pass strings back and forth between the host and the module. In order to remedy this we're gradually working on introducing libraries and examples for multiple languages which can be found in https://github.com/redpanda-data/benthos/tree/main/public/wasm/README.md[the codebase^]. These examples, as well as the processor itself, is a work in progress. diff --git a/internal/impl/wasm/processor_wazero.go b/internal/impl/wasm/processor_wazero.go index 28b94f9f0d..2ea940e598 100644 --- a/internal/impl/wasm/processor_wazero.go +++ b/internal/impl/wasm/processor_wazero.go @@ -36,7 +36,7 @@ func wazeroAllocProcessorConfig() *service.ConfigSpec { Description(` This processor uses https://github.com/tetratelabs/wazero[Wazero^] to execute a WASM module (with support for WASI), calling a specific function for each message being processed. From within the WASM module it is possible to query and mutate the message being processed via a suite of functions exported to the module. -This ecosystem is delicate as WASM doesn't have a single clearly defined way to pass strings back and forth between the host and the module. In order to remedy this we're gradually working on introducing libraries and examples for multiple languages which can be found in https://github.com/{project-github}/tree/main/public/wasm/README.md[the codebase^]. +This ecosystem is delicate as WASM doesn't have a single clearly defined way to pass strings back and forth between the host and the module. In order to remedy this we're gradually working on introducing libraries and examples for multiple languages which can be found in https://github.com/redpanda-data/benthos/tree/main/public/wasm/README.md[the codebase^]. These examples, as well as the processor itself, is a work in progress.