diff --git a/README.md b/README.md index 7f5b5df..a6bcc56 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ Minimalistic BDD assertion toolkit based on [should.js](http://github.com/visionmedia/should.js) ```js -expect(window.r).to.be(undefined); +expect(window.r).to.equal(undefined); expect({ a: 'b' }).to.eql({ a: 'b' }) expect(5).to.be.a('number'); expect([]).to.be.an('array');