typo

Heniker 2020-02-02 15:30:51 +03:00
parent e1b8dbe556
commit 3f4b64f482

@ -25,7 +25,7 @@ Here you query by standard [[attributes]]:
* `@abc` - returns notes with label abc
* `@year=2019` - matches notes with label `year` having value `2019`
* `@year!=2019` - marches notes with label `year`, but not having value 2019 or not having label `year` at all.
* `@year!=2019` - matches notes with label `year`, but not having value 2019 or not having label `year` at all.
* if you want to express condition that note must have `year` label, but not value 2019, then you can do that with `@year @year!=2019`
* `@year<=2000` - return notes with label `year` having value 2000 or smaller. `>`, `<`, `>=` and `<=` are supported.
* In this case parameter can be parsed as a number so number-wise comparison is done. But it's also possible to compare strings lexicographically in the same way. This is useful for comparing dates as seen below.