From 614a77fc0df349cb175f1aa343baeff2d7385179 Mon Sep 17 00:00:00 2001 From: jules Date: Mon, 5 Oct 2015 08:54:58 +0100 Subject: [PATCH] Spelling fix --- modules/juce_audio_formats/codecs/juce_AiffAudioFormat.cpp | 2 +- modules/juce_audio_formats/codecs/juce_WavAudioFormat.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/juce_audio_formats/codecs/juce_AiffAudioFormat.cpp b/modules/juce_audio_formats/codecs/juce_AiffAudioFormat.cpp index 563a15edb9..86bc8432b3 100644 --- a/modules/juce_audio_formats/codecs/juce_AiffAudioFormat.cpp +++ b/modules/juce_audio_formats/codecs/juce_AiffAudioFormat.cpp @@ -643,7 +643,7 @@ public: if (metadataValues.size() > 0) { - // The meta data should have been santised for the AIFF format. + // The meta data should have been sanitised for the AIFF format. // If it was originally sourced from a WAV file the MetaDataSource // key should be removed (or set to "AIFF") once this has been done jassert (metadataValues.getValue ("MetaDataSource", "None") != "WAV"); diff --git a/modules/juce_audio_formats/codecs/juce_WavAudioFormat.cpp b/modules/juce_audio_formats/codecs/juce_WavAudioFormat.cpp index 24ad58c526..3eb7928c4a 100644 --- a/modules/juce_audio_formats/codecs/juce_WavAudioFormat.cpp +++ b/modules/juce_audio_formats/codecs/juce_WavAudioFormat.cpp @@ -1024,7 +1024,7 @@ public: if (metadataValues.size() > 0) { - // The meta data should have been santised for the WAV format. + // The meta data should have been sanitised for the WAV format. // If it was originally sourced from an AIFF file the MetaDataSource // key should be removed (or set to "WAV") once this has been done jassert (metadataValues.getValue ("MetaDataSource", "None") != "AIFF");