From 0a1c0d6c24b87f6408c2568ee523c985bdc5f5ca Mon Sep 17 00:00:00 2001 From: Ben Hadfield Date: Mon, 1 Jul 2019 18:42:26 +0100 Subject: [PATCH] website: Fix typo in Arithmetic Operators section (#21945) --- 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 74310c8ec..93491e5b5 100644 --- a/website/docs/configuration/expressions.html.md +++ b/website/docs/configuration/expressions.html.md @@ -382,7 +382,7 @@ as results: * `a + b` returns the result of adding `a` and `b` together. * `a - b` returns the result of subtracting `b` from `a`. -* `a * b` returns the result of multiplying `b` and `b`. +* `a * b` returns the result of multiplying `a` and `b`. * `a / b` returns the result of dividing `a` by `b`. * `a % b` returns the remainder of dividing `a` by `b`. This operator is generally useful only when used with whole numbers.