diff --git a/modules/juce_core/text/juce_StringArray.h b/modules/juce_core/text/juce_StringArray.h index 9127fb8542..9d96241eb9 100644 --- a/modules/juce_core/text/juce_StringArray.h +++ b/modules/juce_core/text/juce_StringArray.h @@ -259,7 +259,7 @@ public: /** Returns an array containing the tokens in a given string. This will tokenise the given string using whitespace characters as the - token delimiters, and return these tokens as an array. + token delimiters, and return the parsed tokens as an array. @see addTokens */ static StringArray fromTokens (StringRef stringToTokenise, @@ -267,8 +267,8 @@ public: /** Returns an array containing the tokens in a given string. - This will tokenise the given string using whitespace characters as the - token delimiters, and return these tokens as an array. + This will tokenise the given string using the breakCharacters string to define + the token delimiters, and will return the parsed tokens as an array. @param stringToTokenise the string to tokenise @param breakCharacters a string of characters, any of which will be considered diff --git a/modules/juce_gui_basics/juce_gui_basics.h b/modules/juce_gui_basics/juce_gui_basics.h index c2ad325fec..94f4729c2b 100644 --- a/modules/juce_gui_basics/juce_gui_basics.h +++ b/modules/juce_gui_basics/juce_gui_basics.h @@ -77,7 +77,7 @@ /** JUCE_USE_XINERAMA: Enables Xinerama multi-monitor support (Linux only). Unless you specifically want to disable this, it's best to leave this option turned on. This will be used as a fallback if JUCE_USE_XRANDR not set or libxrandr cannot be found. - Note that your users do not need to have Xrandr installed for your JUCE app to run, as + Note that your users do not need to have Xinerama installed for your JUCE app to run, as the availability of Xinerama is queried during runtime. */ #ifndef JUCE_USE_XINERAMA