Fixed Typo Line 64 (#19705)

Replaced '/' with '.'
pull/24909/head
Michael Wright 2018-10-21 04:02:11 +01:00 committed by Tom
parent 86bf84264e
commit 3d54986c7f
1 changed files with 1 additions and 1 deletions

View File

@ -61,7 +61,7 @@ _Hint:_ There is a handy <a href='https://developer.mozilla.org/en-US/docs/Web/J
**Usage**
3 / 2 // returns 1.5
3.0 / 2/0 // returns 1.5
3.0 / 2.0 // returns 1.5
3 / 0 // returns Infinity
3.0 / 0.0 // returns Infinity
-3 / 0 // returns -Infinity