Skip to content

Commit 533351c

Browse files
authored
Merge pull request MicrosoftDocs#8089 from Esaggese/patch-2
Fixed variable name and typos in the examples
2 parents 11f57e7 + 3197ffb commit 533351c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

exchange/exchange-ps/exchange/Test-TextExtraction.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,15 +38,15 @@ You need to be assigned permissions before you can run this cmdlet. Although thi
3838

3939
### Example 1
4040
```powershell
41-
$content = Test-TextExtraction -FileData (Get-Content -Path '.\finalcial data.msg' -Encoding byte -ReadCount 0)
41+
$content = Test-TextExtraction -FileData (Get-Content -Path '.\financial data.msg' -Encoding byte -ReadCount 0)
4242
$content.ExtractedResults
4343
```
4444

4545
This example returns the text that's extracted from the email "financial data.msg"
4646

4747
### Example 2
4848
```powershell
49-
$content = Test-TextExtraction -FileData (Get-Content -Path '.\finalcial data.msg' -Encoding byte -ReadCount 0)
49+
$content = Test-TextExtraction -FileData (Get-Content -Path '.\financial data.msg' -Encoding byte -ReadCount 0)
5050
Test-DataClassification -TestTextExtractionResults $content.ExtractedResults
5151
```
5252

0 commit comments

Comments
 (0)