Skip to content

Commit e097e1c

Browse files
committed
docs: fix a broken link
1 parent 50302c1 commit e097e1c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ Here:
152152
}
153153
```
154154

155-
You can have a look at the source code of the functions in [`/src/functions.ts`](/src/functions.ts). for more examples.
155+
You can have a look at the source code of the functions in [`/src/functions.ts`](/src/functions.ts) for more examples.
156156

157157
- `operators` is an optional array definitions for custom operators. Each definition describes the new operator, the name of the function that it maps to, and the desired precedence of the operator: the same, before, or after one of the existing operators (`at`, `before`, or `after`):
158158

@@ -186,7 +186,7 @@ Here:
186186

187187
When the function of the operator supports more than two arguments, like `and(a, b, c, ...)`, the option `vararg` can be set `true`. In that case, a chain of operators like `a and b and c` will be parsed into the JSON Format `["and", a, b, c, ...]`. Operators that do not support variable arguments, like `1 + 2 + 3`, will be parsed into a nested JSON Format like `["add", ["add", 1, 2], 3]`.
188188

189-
All build-in operators and their precedence are listed in the section [Operators](#operators).
189+
All build-in operators and their precedence are listed on the documentation page in the section [Operators](https://jsonquerylang.org/docs/#operators).
190190

191191
Here an example of using the function `jsonquery`:
192192

0 commit comments

Comments
 (0)