From 5b130631621be3716657fcdecd249772175e097c Mon Sep 17 00:00:00 2001 From: jules Date: Wed, 10 Jan 2018 11:48:06 +0000 Subject: [PATCH] Fixed a typo in comments --- modules/juce_core/maths/juce_MathsFunctions.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/modules/juce_core/maths/juce_MathsFunctions.h b/modules/juce_core/maths/juce_MathsFunctions.h index c107d6fafa..b824d798c9 100644 --- a/modules/juce_core/maths/juce_MathsFunctions.h +++ b/modules/juce_core/maths/juce_MathsFunctions.h @@ -335,10 +335,10 @@ struct MathConstants /** A predefined value for Pi / 2 */ static constexpr FloatType halfPi = static_cast (3.141592653589793238L / 2); - /** A predfined value for Euler's number */ + /** A predefined value for Euler's number */ static constexpr FloatType euler = static_cast (2.71828182845904523536L); - /** A predfined value for sqrt(2) */ + /** A predefined value for sqrt(2) */ static constexpr FloatType sqrt2 = static_cast (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; };