We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2abb00d commit 560127fCopy full SHA for 560127f
Maths/Fraction.js
@@ -11,7 +11,7 @@
11
* @example fraction(0.25) // [1, 4]
12
* @example fraction(5.56) // [139, 25]
13
* @example fraction(0.33) // [33, 100]
14
- * @exapmle fraction(0.33,2) // [10, 3]
+ * @example fraction(0.33,2) // [10, 3]
15
*/
16
function fraction(number, accuracy = 6) {
17
let inp = typeof number === "number" ? number : () => {throw new TypeError("Invalid number, a number type value expected");};
0 commit comments