diff --git a/docs/CMake API.md b/docs/CMake API.md index f03752b69e..cbdbd8559b 100644 --- a/docs/CMake API.md +++ b/docs/CMake API.md @@ -544,7 +544,7 @@ attributes directly to these creation functions, rather than adding them later. `AAX_ePlugInCategory_NoiseReduction`, `AAX_ePlugInCategory_Dither`, `AAX_ePlugInCategory_SoundField`, `AAX_ePlugInCategory_HWGenerators`, `AAX_ePlugInCategory_SWGenerators`, `AAX_ePlugInCategory_WrappedPlugin`, - `AAX_ePlugInCategory_Effect` + `AAX_EPlugInCategory_Effect` `PLUGINHOST_AU` - May be either TRUE or FALSE (defaults to FALSE). If TRUE, will add the preprocessor definition diff --git a/modules/juce_core/files/juce_File.h b/modules/juce_core/files/juce_File.h index f81ec27f87..e8ee95ac8c 100644 --- a/modules/juce_core/files/juce_File.h +++ b/modules/juce_core/files/juce_File.h @@ -516,9 +516,11 @@ public: /** Copies a file. - Tries to copy a file to a different location. - If the target file already exists, this will attempt to delete it first, and - will fail if this can't be done. + Tries to copy a file to a different location. If the target file already exists, + this will attempt to delete it first, and will fail if this can't be done. + + Note that the target file isn't the directory to put it in, it's the actual + filename that you want the new file to have. @returns true if the operation succeeds */ diff --git a/modules/juce_core/misc/juce_RuntimePermissions.h b/modules/juce_core/misc/juce_RuntimePermissions.h index c09e254718..3f1cd113db 100644 --- a/modules/juce_core/misc/juce_RuntimePermissions.h +++ b/modules/juce_core/misc/juce_RuntimePermissions.h @@ -46,7 +46,7 @@ namespace juce New code: RuntimePermissions::request ( - RuntimePermissions::audioRecording, + RuntimePermissions::recordAudio, [this] (bool wasGranted) { if (! wasGranted) diff --git a/modules/juce_core/text/juce_LocalisedStrings.h b/modules/juce_core/text/juce_LocalisedStrings.h index e839dddcc2..32790de896 100644 --- a/modules/juce_core/text/juce_LocalisedStrings.h +++ b/modules/juce_core/text/juce_LocalisedStrings.h @@ -50,7 +50,7 @@ namespace juce "goodbye" = "au revoir" @endcode - If the strings need to contain a quote character, they can use '\"' instead, and + If the strings need to contain a quote character, they can use `\"` instead, and if the first non-whitespace character on a line isn't a quote, then it's ignored, (you can use this to add comments).