1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-10 23:44:24 +00:00

Fixed a typo in comments

This commit is contained in:
jules 2018-01-10 11:48:06 +00:00
parent 49c36a20e0
commit 5b13063162

View file

@ -335,10 +335,10 @@ struct MathConstants
/** A predefined value for Pi / 2 */
static constexpr FloatType halfPi = static_cast<FloatType> (3.141592653589793238L / 2);
/** A predfined value for Euler's number */
/** A predefined value for Euler's number */
static constexpr FloatType euler = static_cast<FloatType> (2.71828182845904523536L);
/** A predfined value for sqrt(2) */
/** A predefined value for sqrt(2) */
static constexpr FloatType sqrt2 = static_cast<FloatType> (1.4142135623730950488L);
};
@ -357,10 +357,10 @@ struct MathConstants
/** A predefined value for Pi / 2 */
static const FloatType halfPi;
/** A predfined value for Euler's number */
/** A predefined value for Euler's number */
static const FloatType euler;
/** A predfined value for sqrt(2) */
/** A predefined value for sqrt(2) */
static const FloatType sqrt2;
};