Skip to content

Commit

Permalink
Add a space before the file name.
Browse files Browse the repository at this point in the history
  • Loading branch information
brotherbard committed Feb 20, 2010
1 parent 76cd64c commit 370c132
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion html/views/commit/commit.js
Original file line number Diff line number Diff line change
Expand Up @@ -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);

Expand Down

0 comments on commit 370c132

Please sign in to comment.