diff --git a/modules/juce_audio_basics/buffers/juce_FloatVectorOperations.h b/modules/juce_audio_basics/buffers/juce_FloatVectorOperations.h index c5c2c28f2b..b3b97e5e40 100644 --- a/modules/juce_audio_basics/buffers/juce_FloatVectorOperations.h +++ b/modules/juce_audio_basics/buffers/juce_FloatVectorOperations.h @@ -194,16 +194,16 @@ public: /** Each element of dest is calculated by hard clipping the corresponding src element so that it is in the range specified by the arguments low and high. */ static void JUCE_CALLTYPE clip (double* dest, const double* src, double low, double high, int num) noexcept; - /** Finds the miniumum and maximum values in the given array. */ + /** Finds the minimum and maximum values in the given array. */ static Range JUCE_CALLTYPE findMinAndMax (const float* src, int numValues) noexcept; - /** Finds the miniumum and maximum values in the given array. */ + /** Finds the minimum and maximum values in the given array. */ static Range JUCE_CALLTYPE findMinAndMax (const double* src, int numValues) noexcept; - /** Finds the miniumum value in the given array. */ + /** Finds the minimum value in the given array. */ static float JUCE_CALLTYPE findMinimum (const float* src, int numValues) noexcept; - /** Finds the miniumum value in the given array. */ + /** Finds the minimum value in the given array. */ static double JUCE_CALLTYPE findMinimum (const double* src, int numValues) noexcept; /** Finds the maximum value in the given array. */ diff --git a/modules/juce_gui_basics/layout/juce_StretchableObjectResizer.h b/modules/juce_gui_basics/layout/juce_StretchableObjectResizer.h index 32543b115f..2dbbf106c3 100644 --- a/modules/juce_gui_basics/layout/juce_StretchableObjectResizer.h +++ b/modules/juce_gui_basics/layout/juce_StretchableObjectResizer.h @@ -67,7 +67,7 @@ public: /** Resizes all the items to fit this amount of space. - This will attempt to fit them in without exceeding each item's miniumum and + This will attempt to fit them in without exceeding each item's minimum and maximum sizes. In cases where none of the items can be expanded or enlarged any further, the final size may be greater or less than the size passed in.