website: Fix typo in Arithmetic Operators section (#21945)

This commit is contained in:
Ben Hadfield 2019-07-01 18:42:26 +01:00 committed by Nick Fagerlund
parent 805ae28876
commit 0a1c0d6c24
1 changed files with 1 additions and 1 deletions

View File

@ -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.