From 748dc373ce46646709d6677b4c18e15685e84146 Mon Sep 17 00:00:00 2001 From: Pedro Manse Date: Thu, 4 Apr 2024 10:45:47 -0300 Subject: [PATCH] singular/plural agreement 'Query and predicate value are equal' instead of 'equal' --- docs/asserting-response.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/asserting-response.md b/docs/asserting-response.md index 94893dc28..25c8502bf 100644 --- a/docs/asserting-response.md +++ b/docs/asserting-response.md @@ -168,7 +168,7 @@ Predicates consist of a predicate function and a predicate value. Predicate func | Predicate | Description | Example | |--------------------|-------------------------------------------------------------------------------------|---------------------------------------------------------------------------------------| -| __`==`__ | Query and predicate value are equals | `jsonpath "$.book" == "Dune"` | +| __`==`__ | Query and predicate value are equal | `jsonpath "$.book" == "Dune"` | | __`!=`__ | Query and predicate value are different | `jsonpath "$.color" != "red"` | | __`>`__ | Query number is greater than predicate value | `jsonpath "$.year" > 1978` | | __`>=`__ | Query number is greater than or equal to the predicate value | `jsonpath "$.year" >= 1978` |