diff --git a/html/views/commit/commit.js b/html/views/commit/commit.js
index cdec998..dfa9d34 100644
--- a/html/views/commit/commit.js
+++ b/html/views/commit/commit.js
@@ -57,7 +57,7 @@ var showFileChanges = function(file, cached) {
if (file.status == 0) // New file?
return showNewFile(file);
- setTitle((cached ? "Staged": "Unstaged") + " changes for" + file.path);
+ setTitle((cached ? "Staged": "Unstaged") + " changes for " + file.path);
displayContext();
var changes = Index.diffForFile_staged_contextLines_(file, cached, contextLines);