From 3f4b64f4823c86dbcd057cc96e65029405533746 Mon Sep 17 00:00:00 2001 From: Heniker Date: Sun, 2 Feb 2020 15:30:51 +0300 Subject: [PATCH] typo --- Search.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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.