Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions aip/general/0160.md
Original file line number Diff line number Diff line change
Expand Up @@ -169,11 +169,11 @@ filters.
Maps, structs, messages can query either for the presence of a field in the map
or a specific value:

| Example | Meaning |
| ---------- | ----------------------------------- |
| `m:foo` | True if `m` contains the key "foo". |
| `m.foo:*` | True if `m` contains the key "foo". |
| `m.foo:42` | True if `m.foo` is 42. |
| Example | Meaning |
| ---------- | -------------------------------------------------------------- |
| `m:foo` | True if `m` contains the key "foo". |
| `m.foo:*` | True if `m` contains the key "foo" and the value is not empty. |
| `m.foo:42` | True if `m.foo` is 42. |

There are two slight distinctions when parsing messages:

Expand Down