diff --git a/dist/changes-2.0.0 b/dist/changes-2.0.0
index 94e80ebe97c1d8919d8ffb921c23723f5ec64cf0..cf2c829d7644c1b139483a625e5156954b3bcb95 100644
--- a/dist/changes-2.0.0
+++ b/dist/changes-2.0.0
@@ -36,7 +36,7 @@ Editing
      the syntax highlighting.
 
 CodePaster
-   * Implemented new protocol of pastebin.com including list functionality\
+   * Implemented new protocol of pastebin.com including list functionality
 
 C++ Support
    * Recognize *.cu as C files
diff --git a/src/plugins/debugger/debuggerplugin.cpp b/src/plugins/debugger/debuggerplugin.cpp
index 165a89e6ba7fd0c39168d283461cb2ac0513adee..aa7f479ddcb4e986d065f72741577737ef451b85 100644
--- a/src/plugins/debugger/debuggerplugin.cpp
+++ b/src/plugins/debugger/debuggerplugin.cpp
@@ -1078,7 +1078,7 @@ void DebuggerPlugin::activateDebugMode()
 
 static bool isDebuggable(Core::IEditor *editor)
 {
-    // Only blacklist XML. Whitelisting would fail on C++ code in files
+    // Only blacklist QML. Whitelisting would fail on C++ code in files
     // with strange names, more harm would be done this way.
     Core::IFile *file = editor->file();
     return !(file && file->mimeType() == "application/x-qml");