From 41a2c97ff30f66095fb5982ef67d4c3a32232f21 Mon Sep 17 00:00:00 2001 From: Tom Poole Date: Sun, 20 Oct 2019 20:01:20 +0100 Subject: [PATCH] A minor documentation update --- modules/juce_gui_basics/keyboard/juce_ModifierKeys.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/juce_gui_basics/keyboard/juce_ModifierKeys.h b/modules/juce_gui_basics/keyboard/juce_ModifierKeys.h index ed0fff22cc..1691551943 100644 --- a/modules/juce_gui_basics/keyboard/juce_ModifierKeys.h +++ b/modules/juce_gui_basics/keyboard/juce_ModifierKeys.h @@ -63,7 +63,7 @@ public: /** Checks whether the 'command' key flag is set (or 'ctrl' on Windows/Linux). This is a platform-agnostic way of checking for the operating system's - preferred command-key modifier - so on the Mac it tests for the Apple key, on + preferred command-key modifier - so on the Mac it tests for the cmd key, on Windows/Linux, it's actually checking for the CTRL key. */ inline bool isCommandDown() const noexcept { return testFlags (commandModifier); }