From e3687f3692a96e8bc697cda5b735be914fe2d8b6 Mon Sep 17 00:00:00 2001 From: Joel Wetzell Date: Wed, 24 Dec 2025 14:58:47 -0600 Subject: [PATCH] chang null to nil --- src/content/docs/concepts/routes.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/content/docs/concepts/routes.md b/src/content/docs/concepts/routes.md index 78c56d4..ffde31d 100644 --- a/src/content/docs/concepts/routes.md +++ b/src/content/docs/concepts/routes.md @@ -9,6 +9,6 @@ Routes take the messages coming from a module and push them out another module. ## YAML Definition - **input**: the id of the [module](/concepts/modules) that will provide messages to this route - **processors**: (optional) array of [processors](/concepts/processors) that will be called in order and the result of the previous will be fed to the next processor. - - if at any point the output of a processor is `null` the entire route will be terminated (subject to change to support output `null` values?) + - if at any point the output of a processor is `nil` the entire route will be terminated (subject to change to support output `nil` values?) - an error in a processor step will also result in the route being terminated - **output**: the id of the [module](/concepts/modules) that will consume messages from the route \ No newline at end of file