Skip to content

Commit

Permalink
Merge pull request #638 from num-lock/readme-fix
Browse files Browse the repository at this point in the history
fixed string concatenation
  • Loading branch information
johnhaley81 committed Jul 20, 2015
2 parents 00d33f6 + 7108413 commit 090096b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ open("tmp")
var author = commit.author();

// Display author information.
console.log("Author:\t" + author.name() + " <", author.email() + ">");
console.log("Author:\t" + author.name() + " <" + author.email() + ">");

// Show the commit date.
console.log("Date:\t" + commit.date());
Expand Down

0 comments on commit 090096b

Please sign in to comment.