Skip to content

Commit 560127f

Browse files
authored
fixing spelling Fraction.js
1 parent 2abb00d commit 560127f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Maths/Fraction.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
* @example fraction(0.25) // [1, 4]
1212
* @example fraction(5.56) // [139, 25]
1313
* @example fraction(0.33) // [33, 100]
14-
* @exapmle fraction(0.33,2) // [10, 3]
14+
* @example fraction(0.33,2) // [10, 3]
1515
*/
1616
function fraction(number, accuracy = 6) {
1717
let inp = typeof number === "number" ? number : () => {throw new TypeError("Invalid number, a number type value expected");};

0 commit comments

Comments
 (0)