Skip to content

Commit 9d6db09

Browse files
committed
Fixed typo in tutorial
1 parent eb6f85d commit 9d6db09

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

docs/sensorthingsapi/requestingData/STA-Filtering.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ Function | Description & Example
116116
--- | ---
117117
`substringof(s1, s2)` <br/> bool | Returns true if s1 is a substring of s2 <br/> `Things?$filter=substringof('room', name)` matches `livingroom` and `room S01`
118118
`endswith(s1, s2)` <br/> bool | Returns true if s1 ends with s2 <br/> `Things?$filter=endswith(name, 'room')` matches `livingroom` but not `room S01`
119-
`startswith(s1, s2)` <br/> bool | Returns true if s1 starts with s2 <br/> `Things?$filter=endswith(name, 'room')` matches `room S01` but not `livingroom`
119+
`startswith(s1, s2)` <br/> bool | Returns true if s1 starts with s2 <br/> `Things?$filter=startswith(name, 'room')` matches `room S01` but not `livingroom`
120120
`substring(s1, i1)` <br/> string | Returns the substring of s1, starting at position i1 <br/> `substring(description,1) eq 'ensor Things'`
121121
`substring(s1, i1, i2)` <br/> string | Returns the substring of s1, starting at position i1, with length i2 <br/> `substring(description,2,4) eq 'nsor'`
122122
`length(s1)` <br/> int | Returns the length of string s1 <br/> `length(description) eq 13`

0 commit comments

Comments
 (0)