diff --git a/docs/sensorthingsapi/requestingData/STA-Filtering.md b/docs/sensorthingsapi/requestingData/STA-Filtering.md
index 98094d505..6b1cf1f9d 100644
--- a/docs/sensorthingsapi/requestingData/STA-Filtering.md
+++ b/docs/sensorthingsapi/requestingData/STA-Filtering.md
@@ -200,11 +200,8 @@ Clients can use `any()` to search in related entity sets and `in` to search in p
| Function | Description & Example |
| --- | --- |
-| `in`
bool | Returns true if the item on the left is in the array on the right.
-`properties/countryCode in ('IT','NL')`
-`'myTag' in properties/tags` |
-| `relatedSet/any(x: )` | Returns true if any of the Entities in the set match the predicate.
-`Datastreams/any(d: d/ObservedProperty/name eq 'NO2')`|
+| `in`
bool | Returns true if the item on the left is in the array on the right.
`properties/countryCode in ('IT','NL')`
`'myTag' in properties/tags` |
+| `relatedSet/any(x: )` | Returns true if any of the Entities in the set match the predicate.
`Datastreams/any(d: d/ObservedProperty/name eq 'NO2')`|
Give me all Things that have both Datastreams that measure NO2 and Datastreams that measure O3: