Skip to content

Commit

Permalink
Merge pull request #5 from EdwardBetts/spelling
Browse files Browse the repository at this point in the history
correct spelling mistake
  • Loading branch information
doowb authored Sep 1, 2017
2 parents 0a04556 + f39e5f1 commit ea84b7d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ describe('diff', function() {
assert.deepEqual(diff(['x', 'b', 'b', 'b', 'c', 'e', 'y'], ['x', 'e']), ['b', 'b', 'b', 'c', 'y']);
});

it('should remove all occurences of an element:', function() {
it('should remove all occurrences of an element:', function() {
assert.deepEqual(diff(['a', 'b', 'b', 'b', 'b'], ['b']), ['a']);
});

Expand Down

0 comments on commit ea84b7d

Please sign in to comment.