diff --git a/docs/asserting-response.md b/docs/asserting-response.md
index 89f64d1c5..b47fdc8e0 100644
--- a/docs/asserting-response.md
+++ b/docs/asserting-response.md
@@ -682,7 +682,7 @@ certificate "Serial-Number" matches "[0-9af]+"
Optional assertion on the received HTTP response body. Body section can be seen
as syntactic sugar over [body asserts] (with `equals` predicate function). If the
body of the response is a [JSON] string or a [XML] string, the body assertion can
-be directly inserted without any modification. For a text based body that is not JSON nor XML,
+be directly inserted without any modification. For a text based body that is neither JSON nor XML,
one can use multiline string that starts with ```
and ends
with ```
. For a precise byte control of the response body,
a [Base64] encoded string or an input file can be used to describe exactly
diff --git a/docs/request.md b/docs/request.md
index aa6b2a418..0607d77f2 100644
--- a/docs/request.md
+++ b/docs/request.md
@@ -367,7 +367,7 @@ you can use [`-u/--user` option].
Optional HTTP body request.
If the body of the request is a [JSON] string or a [XML] string, the value can be
-directly inserted without any modification. For a text based body that is not JSON nor XML,
+directly inserted without any modification. For a text based body that is neither JSON nor XML,
one can use [multiline string body] that starts with ```
and ends
with ```
. Multiline string body support "language hint" and can be used
to create [GraphQL queries].
@@ -532,7 +532,7 @@ POST https://example.org/starwars/graphql
#### Multiline string body
-For text based body that are not JSON nor XML, one can use multiline string, started and ending with
+For text based body that are neither JSON nor XML, one can use multiline string, started and ending with
```
.
~~~hurl