Doc typos

Just because I tripped on one of them :slight_smile:

Modifiers -> ModifierKeys

juce\src\juce_appframework\gui\components\keyboard\juce_KeyPress.h(60):        CTRL+C would be: KeyPress ('c', Modifiers::ctrlModifier)
  G:\Work\Dev\Juce 

juce\src\juce_appframework\gui\components\keyboard\juce_KeyPress.h(61):        SHIFT+Escape would be: KeyPress (KeyPress::escapeKey, Modifiers::shiftModifier)
  G:\Work\Dev\Juce 

juce\juce\src\juce_appframework\gui\components\keyboard\juce_KeyPress.h(113):        @see Modifiers

ok, thanks!

Another one:

    e.g. @code
    void loadMooseFile()
    {
        FileChooser myChooser ("Please select the moose you want to load...",
                               File (SystemStats::getUserHomeDirectory()),
                               "*.moose");

        if (myChooser.browseForFileToOpen())
        {
            File mooseFile (myChooser.getResult());

            loadMoose (mooseFile);
        }
    }
    @endcode

Should be:

File(File::getSpecialLocation(File::userHomeDirectory), "*.moose");