diff --git a/common-docs/reference/math.md b/common-docs/reference/math.md index ff68871d8f33..8ab44f995309 100644 --- a/common-docs/reference/math.md +++ b/common-docs/reference/math.md @@ -76,7 +76,7 @@ Integer multiply and divide treats the two numbers it operates on as integers. I ### imul -Interger multiplication of two numbers `3.9` and `4.2` results in a value of `12` since just the values of `3` and `4` are used from the numbers multiplied. +Integer multiplication of two numbers `3.9` and `4.2` results in a value of `12` since just the values of `3` and `4` are used from the numbers multiplied. ```block let myInt = Math.imul(3.9, 4.2) @@ -84,7 +84,7 @@ let myNumber = 3.9 * 4.2 ``` ### idiv -Interger division of two numbers `7.8` and `2.6` results in a value of `3` since just the values of `7` and `2` are used from the numbers multiplied. +Integer division of two numbers `7.8` and `2.6` results in a value of `3` since just the values of `7` and `2` are used from the numbers multiplied. ```block let myInt = Math.idiv(7.8, 2.6)