Browse Source

Fixed a couple of comment typos

tags/2021-05-28
jules 9 years ago
parent
commit
f36205fabe
2 changed files with 4 additions and 4 deletions
  1. +3
    -3
      modules/juce_core/text/juce_StringArray.h
  2. +1
    -1
      modules/juce_gui_basics/juce_gui_basics.h

+ 3
- 3
modules/juce_core/text/juce_StringArray.h View File

@@ -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


+ 1
- 1
modules/juce_gui_basics/juce_gui_basics.h View File

@@ -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


Loading…
Cancel
Save