From fef47b8f688c832cb66d533e915921ed3d947c4e Mon Sep 17 00:00:00 2001 From: ed Date: Mon, 30 Apr 2018 08:41:42 +0100 Subject: [PATCH] Fixed a documentation typo --- modules/juce_core/maths/juce_NormalisableRange.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/juce_core/maths/juce_NormalisableRange.h b/modules/juce_core/maths/juce_NormalisableRange.h index f4ff23ee5f..d3a7298627 100644 --- a/modules/juce_core/maths/juce_NormalisableRange.h +++ b/modules/juce_core/maths/juce_NormalisableRange.h @@ -267,7 +267,7 @@ private: { auto clampedValue = jlimit (static_cast (0), static_cast (1), value); - // If you his this assertion then either your normalisation function is not working + // If you hit this assertion then either your normalisation function is not working // correctly or your input is out of the expected bounds. jassert (clampedValue == value);