Skip to content

Commit 3a3f9d5

Browse files
authored
Fix codefence in examples (#2881)
1 parent 0d020f9 commit 3a3f9d5

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

src/functions/assert/Equivalence/Should-BeEquivalent.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -650,7 +650,7 @@ function Should-BeEquivalent {
650650
This example generates an equivalency option object that excludes the 'Id' and 'Timestamp' properties from the comparison and uses a simple equality comparison strategy.
651651
652652
.EXAMPLE
653-
```powereshell
653+
```powershell
654654
Should-BeEquivalent ... -ExcludePathsNotOnExpected
655655
```
656656

src/functions/assert/String/Should-BeEmptyString.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
This test will fail, the input is not an empty string.
3030
3131
.EXAMPLE
32-
```
32+
```powershell
3333
$null | Should-BeEmptyString
3434
@() | Should-BeEmptyString
3535
$() | Should-BeEmptyString

src/functions/assert/String/Should-NotBeWhiteSpaceString.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
This test will fail, the input is a whitespace only string.
3030
3131
.EXAMPLE
32-
```
32+
```powershell
3333
$null | Should-NotBeWhiteSpaceString
3434
"" | Should-NotBeWhiteSpaceString
3535
$() | Should-NotBeWhiteSpaceString

0 commit comments

Comments
 (0)