Skip to content

Commit

Permalink
website: Fix typo in Arithmetic Operators section (#21945)
Browse files Browse the repository at this point in the history
  • Loading branch information
benmoose authored and nfagerlund committed Jul 1, 2019
1 parent 805ae28 commit 0a1c0d6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion website/docs/configuration/expressions.html.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit 0a1c0d6

Please sign in to comment.