Skip to content

Commit

Permalink
Merge pull request #3 from zackbleach/corrected-example-in-readme
Browse files Browse the repository at this point in the history
inserted missing curly brace in README
  • Loading branch information
adamhooper committed Apr 15, 2015
2 parents 78e582a + ce33d9e commit d82cbb1
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 @@ -36,7 +36,7 @@ this in your HTML:

Then write code like this:

var set = new SortedSet({ comparator: function(a, b) { return b - a; });
var set = new SortedSet({ comparator: function(a, b) { return b - a; }});
set.insert(5);
set.insert(3);
set.insert(2);
Expand Down

0 comments on commit d82cbb1

Please sign in to comment.