From c9478101af0cacd379dcb1be98d6ef98fddfcddc Mon Sep 17 00:00:00 2001 From: Scott Robinson Date: Fri, 17 Nov 2023 15:37:31 -0600 Subject: [PATCH] Fixed broken link for chain operator --- docs/regex.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/regex.md b/docs/regex.md index 2bed89ed..91c59607 100644 --- a/docs/regex.md +++ b/docs/regex.md @@ -31,7 +31,7 @@ Regexes are often used in query predicates (filter expressions) when selecting o `path.to.object[stringProperty ~> /regex/]` -The `~>` is the [chain operator](control-operators#chain), and its use here implies that the result of `/regex/` is a function. We'll see below that this is in fact the case. +The `~>` is the [chain operator](other-operators#-chain), and its use here implies that the result of `/regex/` is a function. We'll see below that this is in fact the case. __Examples__