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

Docs: Fix typos

This commit is contained in:
luzpaz 2023-07-31 18:39:44 +00:00 committed by Tom Poole
parent 17deafbb0d
commit 3c9645fa60
4 changed files with 4 additions and 4 deletions

View file

@ -98,7 +98,7 @@ struct FloatVectorOperationsBase
/** Multiplies the destination values by the source values. */
static void JUCE_CALLTYPE multiply (FloatType* dest, const FloatType* src, CountType numValues) noexcept;
/** Multiplies each source1 value by the correspinding source2 value, then stores it in the destination array. */
/** Multiplies each source1 value by the corresponding source2 value, then stores it in the destination array. */
static void JUCE_CALLTYPE multiply (FloatType* dest, const FloatType* src1, const FloatType* src2, CountType numValues) noexcept;
/** Multiplies each of the destination values by a fixed multiplier. */