Skip to content

Commit

Permalink
fix #2313: small typos in docs
Browse files Browse the repository at this point in the history
  • Loading branch information
danielrentz authored and mantoni committed Dec 2, 2020
1 parent 895a50d commit e3a8fca
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/release-source/release/matchers.md
Expand Up @@ -245,7 +245,7 @@ Requires **any** element of an `Array`, `Set` or `Map`, or alternatively **any**

## Combining matchers

All matchers implement `and` and `or`. This allows to logically combine mutliple matchers. The result is a new matchers that requires both (and) or one of the matchers (or) to return `true`.
All matchers implement `and` and `or`. This allows to logically combine multiple matchers. The result is a new matcher that requires both (and) or one of the matchers (or) to return `true`.

```javascript
var stringOrNumber = sinon.match.string.or(sinon.match.number);
Expand Down

0 comments on commit e3a8fca

Please sign in to comment.