From 82aa2d4467971819c8056b56c9c94497a6c7db47 Mon Sep 17 00:00:00 2001 From: Alex Novak Date: Fri, 14 Aug 2020 16:33:54 -0400 Subject: [PATCH] Correct annotation in expressions.html `false` section was missing a finishing "`" --- website/docs/configuration/expressions.html.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/website/docs/configuration/expressions.html.md b/website/docs/configuration/expressions.html.md index 1d0e1bdc4..6b4db6111 100644 --- a/website/docs/configuration/expressions.html.md +++ b/website/docs/configuration/expressions.html.md @@ -443,7 +443,7 @@ as results. * `a <= b` returns `true` if `a` is less than or equal to `b`, or `false` otherwise. * `a > b` returns `true` if `a` is greater than `b`, or `false` otherwise. -* `a >= b` returns `true` if `a` is greater than or equal to `b`, or `false otherwise. +* `a >= b` returns `true` if `a` is greater than or equal to `b`, or `false` otherwise. ### Logical Operators