diff --git a/doc/qtcreator.qdoc b/doc/qtcreator.qdoc
index cd014241635c7e5e4f18c80ed4e4249fb05acc25..ce316616f41bb13bb369ebb05b176a38f179fd0a 100644
--- a/doc/qtcreator.qdoc
+++ b/doc/qtcreator.qdoc
@@ -700,7 +700,7 @@
 
     \section1 Usage
 
-    You can find the version control menu entires in a sub-menu of the
+    You can find the version control menu entries in a sub-menu of the
     \gui{Tools} menu. The version control system displayed here is the system
     that manages the current project.
 
diff --git a/src/plugins/fakevim/fakevimhandler.cpp b/src/plugins/fakevim/fakevimhandler.cpp
index b7239ae1b5f01898b3ce07c307d5cb7713d2bd8c..c6e8976f0cd22bb1dbac0f900810862919f79d17 100644
--- a/src/plugins/fakevim/fakevimhandler.cpp
+++ b/src/plugins/fakevim/fakevimhandler.cpp
@@ -1493,7 +1493,7 @@ EventResult FakeVimHandler::Private::handleMiniBufferModes(int key, int unmodifi
         updateMiniBuffer();
     } else if ((key == Key_Up || key == Key_PageUp) && isSearchMode()) {
         // FIXME: This and the three cases below are wrong as vim
-        // takes only matching entires in the history into account.
+        // takes only matching entries in the history into account.
         if (m_searchHistoryIndex > 0) {
             --m_searchHistoryIndex;
             showBlackMessage(m_searchHistory.at(m_searchHistoryIndex));