Skip to content

Commit cf184e9

Browse files
johljuSean Wheeler
authored andcommitted
Fix typo in code example (MicrosoftDocs#2082)
1 parent 860e2a6 commit cf184e9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

dsc/authoringResourceComposite.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -197,7 +197,7 @@ To access the user context from within a custom resource, you can use the automa
197197
For example the following code would write the user context under which the resource is running to the verbose output stream:
198198

199199
```powershell
200-
if (PsDscContext.RunAsUser) {
200+
if ($PsDscContext.RunAsUser) {
201201
Write-Verbose "User: $PsDscContext.RunAsUser";
202202
}
203203
```

0 commit comments

Comments
 (0)