Skip to content

Commit 0598974

Browse files
committed
Update New-DlpKeywordDictionary.md
Typo fix.
1 parent 20665a1 commit 0598974

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

exchange/exchange-ps/exchange/New-DlpKeywordDictionary.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ This example creates a DLP keyword dictionary named Diseases by using the specif
4848
### Example 2
4949
```powershell
5050
$Keywords = Get-Content "C:\My Documents\InappropriateTerms.txt"
51-
$EncodedKeywords = $Keywords | ForEach-Object{[System.Text.Encoding]::Unicode.GetBytes($_+"`r`n")}
51+
$EncodedKeywords = $Keywords | ForEach-Object {[System.Text.Encoding]::Unicode.GetBytes($_+"`r`n")}
5252
New-DlpKeywordDictionary -Name "Inappropriate Language" -Description "Unprofessional and inappropriate terminology" -FileData $EncodedKeywords
5353
```
5454

0 commit comments

Comments
 (0)