File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -245,7 +245,7 @@ Predicates
245245----------
246246There are three different ways to create filter predicates in JsonPath.
247247
248- ###Inline Predicates
248+ ### Inline Predicates
249249
250250Inline predicates are the ones defined in the path.
251251
@@ -259,7 +259,7 @@ You can use `&&` and `||` to combine multiple predicates `[?(@.price < 10 && @.c
259259
260260You can use ` ! ` to negate a predicate ` [?(!(@.price < 10 && @.category == 'fiction'))] ` .
261261
262- ###Filter Predicates
262+ ### Filter Predicates
263263
264264Predicates can be built using the Filter API as shown below:
265265
@@ -292,7 +292,7 @@ Filter fooAndBar = filter(
292292);
293293```
294294
295- ###Roll Your Own
295+ ### Roll Your Own
296296
297297Third option is to implement your own predicates
298298
You can’t perform that action at this time.
0 commit comments