From bec31ff244bcc1967b1a202e7c58c0cce9ffa202 Mon Sep 17 00:00:00 2001 From: Joel Wetzell Date: Sat, 13 Dec 2025 13:47:45 -0600 Subject: [PATCH] use type where possibel --- src/content/docs/processors/string/create.md | 2 +- src/content/docs/processors/string/decode.md | 2 +- src/content/docs/processors/string/encode.md | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/content/docs/processors/string/create.md b/src/content/docs/processors/string/create.md index 49a0fff..3fc2e3b 100644 --- a/src/content/docs/processors/string/create.md +++ b/src/content/docs/processors/string/create.md @@ -3,7 +3,7 @@ title: Create sidebar: order: 3 --- -The string create processor creates a string based on the provided template. This processor will return an error if there is an issue executing the template. The template property is just a [Go template](https://pkg.go.dev/text/template) that will be evaluated with the incoming message provided as an environment. +The `string.create` processor creates a string based on the provided template. This processor will return an error if there is an issue executing the template. The template property is just a [Go template](https://pkg.go.dev/text/template) that will be evaluated with the incoming message provided as an environment. - **type**: `string.create` diff --git a/src/content/docs/processors/string/decode.md b/src/content/docs/processors/string/decode.md index f95c6f9..a40824a 100644 --- a/src/content/docs/processors/string/decode.md +++ b/src/content/docs/processors/string/decode.md @@ -3,7 +3,7 @@ title: Decode sidebar: order: 1 --- -The string decode processor takes a array of bytes and turn it into string. This processor will return an error if the message being processed is not an array of bytes. +The `string.decode` processor takes a array of bytes and turn it into string. This processor will return an error if the message being processed is not an array of bytes. - **type**: `string.decode` diff --git a/src/content/docs/processors/string/encode.md b/src/content/docs/processors/string/encode.md index d56b88e..10c0e26 100644 --- a/src/content/docs/processors/string/encode.md +++ b/src/content/docs/processors/string/encode.md @@ -3,7 +3,7 @@ title: Encode sidebar: order: 2 --- -The string encode processor takes a string and turns it into an array of bytes. This processor will return an error if the message being processed is not a string. +The `string.encode` processor takes a string and turns it into an array of bytes. This processor will return an error if the message being processed is not a string. - **type**: `string.encode`