Skip to content

Commit 7598d11

Browse files
committed
Tweaked formatting.
1 parent bec2136 commit 7598d11

File tree

1 file changed

+7
-7
lines changed

1 file changed

+7
-7
lines changed

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -267,7 +267,7 @@ Expects HTTP response to return a non-empty JSON collection.
267267
* [`utils.expect.response.unique`](#utilsexpectresponseunique):
268268
Expects HTTP response to return a JSON collection with a single element.
269269

270-
### utils.expect.response.text
270+
### `utils.expect.response.text`
271271
Expects HTTP response to return a simple (not the JSON) data type, such as string.
272272

273273
#### Prototype
@@ -281,7 +281,7 @@ Check if the HTTP response data can be initialized as text.
281281
utils.expect.response.text(pm);
282282
```
283283

284-
### utils.expect.response.json
284+
### `utils.expect.response.json`
285285
Expects HTTP response to return any JSON object. It can be a single element, a collection, an empty collection, basically, anything that comes in a JSON format.
286286

287287
#### Prototype
@@ -295,7 +295,7 @@ Check if the HTTP response data contains a JSON object.
295295
utils.expect.response.json(pm);
296296
```
297297

298-
### utils.expect.response.one
298+
### `utils.expect.response.one`
299299
Expects HTTP response to return a single JSON element (not a collection and not a collection with a single item).
300300

301301
#### Prototype
@@ -309,7 +309,7 @@ Check if the HTTP response data contains a single JSON element.
309309
utils.expect.response.one(pm);
310310
```
311311

312-
### utils.expect.response.many
312+
### `utils.expect.response.many`
313313
Expects HTTP response to return a JSON collection (can be empty or contain the specified minimum and/or maximum number of items). The `utils.expect.response.many` function can be called via one of these shortcuts:
314314

315315
* [`utils.expect.response.empty`](#utilsexpectresponseempty) to check for an empty collection
@@ -333,7 +333,7 @@ Check if the HTTP response data contains a JSON collection with at least 2 and a
333333
utils.expect.response.many(pm, 2, 10);
334334
```
335335

336-
### utils.expect.response.empty
336+
### `utils.expect.response.empty`
337337
Expects HTTP response to return an empty JSON collection (but not `null`).
338338

339339
#### Prototype
@@ -347,7 +347,7 @@ Check if the HTTP response data contains an empty JSON collection (but not `null
347347
utils.expect.response.empty(pm);
348348
```
349349

350-
### utils.expect.response.nonempty
350+
### `utils.expect.response.nonempty`
351351
Expects HTTP response to return a non-empty JSON collection (one or more items).
352352

353353
#### Prototype
@@ -361,7 +361,7 @@ Check if the HTTP response data contains a JSON collection with at least one ite
361361
utils.expect.response.nonempty(pm);
362362
```
363363

364-
### utils.expect.response.unique
364+
### `utils.expect.response.unique`
365365
Expects HTTP response to return a JSON collection with a single element (but not a single element matching the condition of the utils.expect.response.one function).
366366

367367
#### Prototype

0 commit comments

Comments
 (0)