diff --git a/content/v2.0/reference/flux/functions/math/modf.md b/content/v2.0/reference/flux/functions/math/modf.md index 58e8d07c5..78e4ef7fd 100644 --- a/content/v2.0/reference/flux/functions/math/modf.md +++ b/content/v2.0/reference/flux/functions/math/modf.md @@ -18,20 +18,20 @@ _**Output data format:** Object_ ```js import "math" -math.modf(x: 3.14) +math.modf(f: 3.14) // Returns {int: 3, frac: 0.14000000000000012} ``` ## Parameters -### x +### f The value used in the operation. _**Data type:** Float_ ## Special cases ```js -math.modf(x: ±Inf) // Returns {int: ±Inf, frac: NaN} -math.modf(x: NaN) // Returns {int: NaN, frac: NaN} +math.modf(f: ±Inf) // Returns {int: ±Inf, frac: NaN} +math.modf(f: NaN) // Returns {int: NaN, frac: NaN} ``` diff --git a/content/v2.0/reference/flux/functions/math/remainder.md b/content/v2.0/reference/flux/functions/math/remainder.md index 41d32767c..c7056aef3 100644 --- a/content/v2.0/reference/flux/functions/math/remainder.md +++ b/content/v2.0/reference/flux/functions/math/remainder.md @@ -27,7 +27,7 @@ The numerator used in the operation. _**Data type:** Float_ -### x +### y The denominator used in the operation. _**Data type:** Float_ diff --git a/content/v2.0/reference/flux/functions/math/signbit.md b/content/v2.0/reference/flux/functions/math/signbit.md index e85ec18e8..cefb73d90 100644 --- a/content/v2.0/reference/flux/functions/math/signbit.md +++ b/content/v2.0/reference/flux/functions/math/signbit.md @@ -23,6 +23,6 @@ math.signbit(x: -1.2) ## Parameters ### x -The value used in the operation. +The value used in the evaluation. _**Data type:** Float_