Skip to content

Commit

Permalink
Fix typo in ElementFilterExpression comment
Browse files Browse the repository at this point in the history
  • Loading branch information
FloEdelmann authored Sep 2, 2024
1 parent d1d0f6f commit 4a460fe
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ import de.westnordost.streetcomplete.data.osm.mapdata.ElementType
* | `shop !~ car|boat` | doesn't have a tag whose key is `shop` and value matches the regex `car|boat` |
* | `~shop|craft ~ car|boat` | has a tag whose key matches `shop|craft` and value matches `car|boat` (both regexes) |
* | `~shop|craft !~ car|boat` | doesn't have a tag whose key matches `shop|craft` and value matches `car|boat` (both regexes) |
* | `foo < 3.3` | has a tag with key `foo` whose value is smaller than 2.5<br/>`<`,`<=`,`>=`,`>` work likewise |
* | `foo < 2.5` | has a tag with key `foo` whose value is smaller than 2.5<br/>`<`,`<=`,`>=`,`>` work likewise |
* | `foo < 3.3ft` | same as above but value is smaller than 3.3 feet (~1 meter)<br/>This works for other units as well (mph, st, lbs, yds...) |
* | `foo < 3'4"` | same as above but value is smaller than 3 feet, 4 inches (~1 meter) |
* | `foo < 2012-10-01` | same as above but value is a date older than Oct 1st 2012 |
Expand Down

0 comments on commit 4a460fe

Please sign in to comment.