Skip to content

Commit 90e8c22

Browse files
committed
Acrolinx Correctness issues
1 parent aa852f1 commit 90e8c22

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

articles/active-directory/enterprise-users/groups-dynamic-membership.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ A membership rule that automatically populates a group with users or devices is
6767
- Operator
6868
- Value
6969

70-
The order of the parts within an expression are important to avoid syntax errors.
70+
The order of the parts within an expression is important to avoid syntax errors.
7171

7272
## Supported properties
7373

@@ -106,7 +106,7 @@ dirSyncEnabled |true false |user.dirSyncEnabled -eq true
106106
| objectId |GUID of the user object | user.objectId -eq "11111111-1111-1111-1111-111111111111" |
107107
| onPremisesDistinguishedName (preview)| Any string value or *null* | user.onPremisesDistinguishedName -eq "value" |
108108
| onPremisesSecurityIdentifier | On-premises security identifier (SID) for users who were synchronized from on-premises to the cloud. | user.onPremisesSecurityIdentifier -eq "S-1-1-11-1111111111-1111111111-1111111111-1111111" |
109-
| passwordPolicies |None DisableStrongPassword DisablePasswordExpiration DisablePasswordExpiration, DisableStrongPassword | user.passwordPolicies -eq "DisableStrongPassword" |
109+
| passwordPolicies |None<br>DisableStrongPassword<br>DisablePasswordExpiration<br>DisablePasswordExpiration, DisableStrongPassword | user.passwordPolicies -eq "DisableStrongPassword" |
110110
| physicalDeliveryOfficeName |Any string value or *null* | user.physicalDeliveryOfficeName -eq "value" |
111111
| postalCode |Any string value or *null* | user.postalCode -eq "value" |
112112
| preferredLanguage |ISO 639-1 code | user.preferredLanguage -eq "en-US" |
@@ -162,12 +162,12 @@ The **-match** operator is used for matching any regular expression. Examples:
162162
```
163163
user.displayName -match "Da.*"
164164
```
165-
Da, Dav, David evaluate to true, aDa evaluates to false.
165+
`Da`, `Dav`, `David` evaluate to true, aDa evaluates to false.
166166

167167
```
168168
user.displayName -match ".*vid"
169169
```
170-
David evaluates to true, Da evaluates to false.
170+
`David` evaluates to true, `Da` evaluates to false.
171171

172172
## Supported values
173173

@@ -278,7 +278,7 @@ user.assignedPlans -any (assignedPlan.service -eq "SCO" -and assignedPlan.capabi
278278

279279
#### Example 3
280280

281-
The following expression selects all users who have no asigned service plan:
281+
The following expression selects all users who have no assigned service plan:
282282

283283
```
284284
user.assignedPlans -all (assignedPlan.servicePlanId -eq "")

0 commit comments

Comments
 (0)