From a7b1720df0836a46144c1494b7614a6707809fd2 Mon Sep 17 00:00:00 2001 From: ed Date: Mon, 30 Apr 2018 09:16:27 +0100 Subject: [PATCH] Fixed a couple more documentation typos --- modules/juce_events/messages/juce_ApplicationBase.h | 2 +- modules/juce_gui_basics/application/juce_Application.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/modules/juce_events/messages/juce_ApplicationBase.h b/modules/juce_events/messages/juce_ApplicationBase.h index 93afb5e5b9..6d0f9c562f 100644 --- a/modules/juce_events/messages/juce_ApplicationBase.h +++ b/modules/juce_events/messages/juce_ApplicationBase.h @@ -104,7 +104,7 @@ public: /** Checks whether multiple instances of the app are allowed. - If you application class returns true for this, more than one instance is + If your application class returns true for this, more than one instance is permitted to run (except on the Mac where this isn't possible). If it's false, the second instance won't start, but it you will still get a diff --git a/modules/juce_gui_basics/application/juce_Application.h b/modules/juce_gui_basics/application/juce_Application.h index 2f85b7fa05..fb4c2981d7 100644 --- a/modules/juce_gui_basics/application/juce_Application.h +++ b/modules/juce_gui_basics/application/juce_Application.h @@ -124,7 +124,7 @@ public: /** Checks whether multiple instances of the app are allowed. - If you application class returns true for this, more than one instance is + If your application class returns true for this, more than one instance is permitted to run (except on OSX where the OS automatically stops you launching a second instance of an app without explicitly starting it from the command-line).