docs: add missing apostrophes (#1344)

This commit is contained in:
Curtis Gibby 2020-06-09 04:16:50 -06:00 committed by GitHub
parent 41ff363e26
commit 2fb8983f3c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -944,7 +944,7 @@ module.exports = function (chai, _) {
* *
* Add `.not` earlier in the chain to negate `.arguments`. However, it's often * Add `.not` earlier in the chain to negate `.arguments`. However, it's often
* best to assert which type the target is expected to be, rather than * best to assert which type the target is expected to be, rather than
* asserting that its not an `arguments` object. * asserting that its not an `arguments` object.
* *
* expect('foo').to.be.a('string'); // Recommended * expect('foo').to.be.a('string'); // Recommended
* expect('foo').to.not.be.arguments; // Not recommended * expect('foo').to.not.be.arguments; // Not recommended
@ -1926,7 +1926,7 @@ module.exports = function (chai, _) {
* a `descriptor`. The problem is that it creates uncertain expectations by * a `descriptor`. The problem is that it creates uncertain expectations by
* asserting that the target either doesn't have a property descriptor with * asserting that the target either doesn't have a property descriptor with
* the given key `name`, or that it does have a property descriptor with the * the given key `name`, or that it does have a property descriptor with the
* given key `name` but its not deeply equal to the given `descriptor`. It's * given key `name` but its not deeply equal to the given `descriptor`. It's
* often best to identify the exact output that's expected, and then write an * often best to identify the exact output that's expected, and then write an
* assertion that only accepts that exact output. * assertion that only accepts that exact output.
* *