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:
parent
49c36a20e0
commit
5b13063162
1 changed files with 4 additions and 4 deletions
|
|
@ -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;
|
||||
};
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue