Skip to content

Commit 41aa5fb

Browse files
committed
fix table
1 parent 3b20ad1 commit 41aa5fb

File tree

1 file changed

+7
-6
lines changed

1 file changed

+7
-6
lines changed

articles/azure-web-pubsub/reference-odata-filter.md

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ This article provides the following resources:
2020

2121
## Syntax
2222

23-
A filter in the OData language is a Boolean expression, which in turn can be one of several types of expression, as shown by the following EBNF ([Extended Backus-Naur Form](https://en.wikipedia.org/wiki/Extended_Backus–Naur_form)) description:
23+
A filter in the OData language is boolean expression, which in turn can be one of several types of expression, as shown by the following EBNF ([Extended Backus-Naur Form](https://en.wikipedia.org/wiki/Extended_Backus–Naur_form)) description:
2424

2525
```
2626
/* Identifiers */
@@ -45,8 +45,9 @@ For the complete EBNF, see [formal grammar section](#formal-grammar) .
4545

4646
Using the filter syntax, you can control sending messages to connections matching the identifier criteria. Azure Web PubSub supports below identifiers:
4747

48-
| Identifier | Description | Note | Examples
49-
| --- | --- |--|--| `userId` | The userId of the connection. | Case insensitive. It can be used in [string operations](#supported-operations). | `userId eq 'user1'`
48+
| Identifier | Description | Note | Examples |
49+
| --- | --- |--| --
50+
| `userId` | The userId of the connection. | Case insensitive. It can be used in [string operations](#supported-operations). | `userId eq 'user1'`
5051
| `connectionId` | The connectionId of the connection. | Case insensitive. It can be used in [string operations](#supported-operations). | `connectionId ne '123'`
5152
| `groups` | The collection of groups the connection is currently in. | Case insensitive. It can be used in [collection operations](#supported-operations). | `'group1' in groups`
5253

@@ -56,11 +57,11 @@ Identifiers refer to the property value of a connection. Azure Web PubSub suppor
5657

5758
The expression for a filter is a boolean expression. Azure Web PubSub sends messages to connections with filter expressions evaluated to `true`.
5859

59-
The types of Boolean expressions include:
60+
The types of boolean expressions include:
6061

61-
- Logical expressions that combine other Boolean expressions using the operators `and`, `or`, and `not`.
62+
- Logical expressions that combine other boolean expressions using the operators `and`, `or`, and `not`.
6263
- Comparison expressions, which compare fields or range variables to constant values using the operators `eq`, `ne`, `gt`, `lt`, `ge`, and `le`.
63-
- The Boolean literals `true` and `false`. These constants can be useful sometimes when programmatically generating filters, but otherwise don't tend to be used in practice.
64+
- The boolean literals `true` and `false`. These constants can be useful sometimes when programmatically generating filters, but otherwise don't tend to be used in practice.
6465
- Boolean expressions in parentheses. Using parentheses helps to explicitly determine the order of operations in a filter. For more information on the default precedence of the OData operators, see [operator precedence section](#operator-precedence).
6566

6667
### Supported operations

0 commit comments

Comments
 (0)