diff --git a/Search.md b/Search.md index b2549db..3c574fe 100644 --- a/Search.md +++ b/Search.md @@ -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.