Skip to content

Commit

Permalink
Fix syntax error on .should example
Browse files Browse the repository at this point in the history
  • Loading branch information
mguterl committed Aug 3, 2015
1 parent 69cc8d7 commit 768d0fb
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 @@ -59,7 +59,7 @@ All assertions are defined for both the BDD and TDD syntaxes.
var d1 = new Date(2013, 4, 30, 16, 5),
d2 = new Date(2013, 4, 30, 17);

d1.should.equalDate.d2
d1.should.equalDate(d2)
expect(d1).to.equalDate(d2)
assert.equalDate(d1, d2)
```
Expand Down

0 comments on commit 768d0fb

Please sign in to comment.