Typos in the documentation

In juce_Colour.h :

/** Returns a copy of this colour with its brightness multiplied by the given value. The new colour's saturation is (this->getBrightness() * multiplier) (the result is clipped to legal limits). */

should be

/** Returns a copy of this colour with its brightness multiplied by the given value. The new colour's brightness is (this->getBrightness() * multiplier) (the result is clipped to legal limits). */

Thanks, I'll fix that!

New typo of the day in static String JUCE_CALLTYPE KeyGeneration::generateKeyFile, "decrpyt" should be "decrypt"

It was great to see the JUCE team last week ;)

Thanks! (And good to see you too!)

Just seen a typo in the juce_MenuBarModel.h in the documentation of the function “virtual void menuBarActivated (bool isActive);”.

This is called when the user starts/stops navigating the maenu bar.

should be

This is called when the user starts/stops navigating the menu bar.

New typo of the day, in the documentation of the function ListBoxModel::refreshComponentForRow().

This method will be called whenever a custom component might need to be updated - e.g. when the table is changed, or TableListBox::updateContent() is called.

should be

This method will be called whenever a custom component might need to be updated - e.g. when the ListBox is changed, or ListBox::updateContent() is called.

Ta, I’ll sort that out.