diff --git a/src/plugins/coreplugin/actionmanager/command.cpp b/src/plugins/coreplugin/actionmanager/command.cpp
index e19e89e2554cb7ce3bc4fddd54a9a857fadcaccb..bc0ff900606abfd9f6b4f2edeb0dc92c4f9cc526 100644
--- a/src/plugins/coreplugin/actionmanager/command.cpp
+++ b/src/plugins/coreplugin/actionmanager/command.cpp
@@ -83,7 +83,7 @@
     \value CA_Hide
         When there is no active action, hide the user "visible" action, instead of just
         disabling it.
-    \value CA_NonConfigureable
+    \value CA_NonConfigurable
         Flag to indicate that the keyboard shortcut of this Command should not be
         configurable by the user.
 */
@@ -535,7 +535,7 @@ void Action::setAttribute(CommandAttribute attr)
     case Core::Command::CA_UpdateIcon:
         m_action->setAttribute(Utils::ProxyAction::UpdateIcon);
         break;
-    case Core::Command::CA_NonConfigureable:
+    case Core::Command::CA_NonConfigurable:
         break;
     }
 }
@@ -553,7 +553,7 @@ void Action::removeAttribute(CommandAttribute attr)
     case Core::Command::CA_UpdateIcon:
         m_action->removeAttribute(Utils::ProxyAction::UpdateIcon);
         break;
-    case Core::Command::CA_NonConfigureable:
+    case Core::Command::CA_NonConfigurable:
         break;
     }
 }
diff --git a/src/plugins/coreplugin/actionmanager/command.h b/src/plugins/coreplugin/actionmanager/command.h
index 34115709891e1a8bfb6236cb7a16b7f0a9696be1..2fe99d09dd22f70f281f9b6d32dbcdffe617ee43 100644
--- a/src/plugins/coreplugin/actionmanager/command.h
+++ b/src/plugins/coreplugin/actionmanager/command.h
@@ -57,7 +57,7 @@ public:
         CA_Hide = 1,
         CA_UpdateText = 2,
         CA_UpdateIcon = 4,
-        CA_NonConfigureable = 8
+        CA_NonConfigurable = 8
     };
     Q_DECLARE_FLAGS(CommandAttributes, CommandAttribute)
 
diff --git a/src/plugins/coreplugin/dialogs/shortcutsettings.cpp b/src/plugins/coreplugin/dialogs/shortcutsettings.cpp
index fb992750b945f705388e8def928fec01e057534b..ba9f438212a30685bea5097a8f514c41f84a1c0d 100644
--- a/src/plugins/coreplugin/dialogs/shortcutsettings.cpp
+++ b/src/plugins/coreplugin/dialogs/shortcutsettings.cpp
@@ -300,7 +300,7 @@ void ShortcutSettings::initialize()
     QMap<QString, QTreeWidgetItem *> sections;
 
     foreach (Command *c, am->commands()) {
-        if (c->hasAttribute(Command::CA_NonConfigureable))
+        if (c->hasAttribute(Command::CA_NonConfigurable))
             continue;
         if (c->action() && c->action()->isSeparator())
             continue;
diff --git a/src/plugins/debugger/debuggerplugin.cpp b/src/plugins/debugger/debuggerplugin.cpp
index 1e2cf761f952a05506eb47e3842e943938cc2757..7af762a428b3cd21d6d6d64f92c900e55cba4a14 100644
--- a/src/plugins/debugger/debuggerplugin.cpp
+++ b/src/plugins/debugger/debuggerplugin.cpp
@@ -3027,7 +3027,7 @@ void DebuggerPluginPrivate::extensionsInitialized()
         cmd->action()->setEnabled(true);
         editorContextMenu->addAction(cmd);
         cmd->setAttribute(Command::CA_Hide);
-        cmd->setAttribute(Command::CA_NonConfigureable); // ADD_TO_WATCH1 is enough.
+        cmd->setAttribute(Command::CA_NonConfigurable); // ADD_TO_WATCH1 is enough.
     }
 
     m_plugin->addAutoReleasedObject(new CommonOptionsPage);
diff --git a/src/plugins/designer/formeditorw.cpp b/src/plugins/designer/formeditorw.cpp
index c6e2630aed2bf1b7b2ea5ecacd5b2dc1ac839593..f90006c1fa3d56b48bad279db0bfacb895f77f07 100644
--- a/src/plugins/designer/formeditorw.cpp
+++ b/src/plugins/designer/formeditorw.cpp
@@ -625,7 +625,7 @@ Core::ActionContainer *FormEditorW::createPreviewStyleMenu(Core::ActionManager *
         bindShortcut(command, a);
         if (isDeviceProfile) {
             command->setAttribute(Core::Command::CA_UpdateText);
-            command->setAttribute(Core::Command::CA_NonConfigureable);
+            command->setAttribute(Core::Command::CA_NonConfigurable);
         }
         menuPreviewStyle->addAction(command);
     }