Browse Source

Spelling fix.

tags/2021-05-28
jules 12 years ago
parent
commit
1c90d82aac
2 changed files with 5 additions and 5 deletions
  1. +4
    -4
      modules/juce_core/text/juce_String.h
  2. +1
    -1
      modules/juce_gui_basics/commands/juce_ApplicationCommandManager.h

+ 4
- 4
modules/juce_core/text/juce_String.h View File

@@ -393,7 +393,7 @@ public:
*/ */
bool containsIgnoreCase (const String& text) const noexcept; bool containsIgnoreCase (const String& text) const noexcept;
/** Tests whether the string contains another substring as a distict word.
/** Tests whether the string contains another substring as a distinct word.
@returns true if the string contains this word, surrounded by @returns true if the string contains this word, surrounded by
non-alphanumeric characters non-alphanumeric characters
@@ -401,7 +401,7 @@ public:
*/ */
bool containsWholeWord (const String& wordToLookFor) const noexcept; bool containsWholeWord (const String& wordToLookFor) const noexcept;
/** Tests whether the string contains another substring as a distict word.
/** Tests whether the string contains another substring as a distinct word.
@returns true if the string contains this word, surrounded by @returns true if the string contains this word, surrounded by
non-alphanumeric characters non-alphanumeric characters
@@ -409,7 +409,7 @@ public:
*/ */
bool containsWholeWordIgnoreCase (const String& wordToLookFor) const noexcept; bool containsWholeWordIgnoreCase (const String& wordToLookFor) const noexcept;
/** Finds an instance of another substring if it exists as a distict word.
/** Finds an instance of another substring if it exists as a distinct word.
@returns if the string contains this word, surrounded by non-alphanumeric characters, @returns if the string contains this word, surrounded by non-alphanumeric characters,
then this will return the index of the start of the substring. If it isn't then this will return the index of the start of the substring. If it isn't
@@ -418,7 +418,7 @@ public:
*/ */
int indexOfWholeWord (const String& wordToLookFor) const noexcept; int indexOfWholeWord (const String& wordToLookFor) const noexcept;
/** Finds an instance of another substring if it exists as a distict word.
/** Finds an instance of another substring if it exists as a distinct word.
@returns if the string contains this word, surrounded by non-alphanumeric characters, @returns if the string contains this word, surrounded by non-alphanumeric characters,
then this will return the index of the start of the substring. If it isn't then this will return the index of the start of the substring. If it isn't


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

@@ -182,7 +182,7 @@ public:
/** Returns the list of categories. /** Returns the list of categories.
This will go through all registered commands, and return a list of all the distict
This will go through all registered commands, and return a list of all the distinct
categoryName values from their ApplicationCommandInfo structure. categoryName values from their ApplicationCommandInfo structure.
@see getCommandsInCategory() @see getCommandsInCategory()


Loading…
Cancel
Save