Skip to content

Commit cba4fce

Browse files
authored
Merge pull request #123 from bagratte/patch-1
Fix typos in advanced.md documentation
2 parents 3818da0 + 33d6944 commit cba4fce

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/advanced.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ example_data = {"foo": [{"bar": [4, 5]}, {"bar": [1, 5]}]}
8484
print(env.findall("$.foo[?min(@.bar) > 1]", example_data))
8585
```
8686

87-
Now, when we use `env.finall()`, `env.finditer()` or `env.compile()`, our `min` function will be available for use in filter expressions.
87+
Now, when we use `env.findall()`, `env.finditer()` or `env.compile()`, our `min` function will be available for use in filter expressions.
8888

8989
```text
9090
$..products[[email protected] == min($..products.price)]
@@ -156,7 +156,7 @@ Python JSONPath can be customized by subclassing [`JSONPathEnvironment`](api.md#
156156

157157
### Identifier Tokens
158158

159-
The default identifier tokens, like `$` and `@`, can be changed by setting attributes a on `JSONPathEnvironment`. This example sets the root token (default `$`) to be `^`.
159+
The default identifier tokens, like `$` and `@`, can be changed by setting attributes on a `JSONPathEnvironment`. This example sets the root token (default `$`) to be `^`.
160160

161161
```python
162162
import JSONPathEnvironment

0 commit comments

Comments
 (0)