docs: Add single-line not matcher syntax

This commit is contained in:
Francis Lavoie 2020-04-09 18:58:25 -04:00 committed by GitHub
parent 0480b129f0
commit 191986338f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -223,14 +223,19 @@ By the method (verb) of the HTTP request. Verbs should be uppercase, like `POST`
### not ### not
```
not <any other matcher>
```
Or
``` ```
not { not {
<any other matchers...> <any other matchers...>
} }
``` ```
Encloses other matchers and negates their result. Encloses one or more other matchers and negates their result.
### path ### path