From 3cbf2a8cdd5fc4d378bca631c171b25e44c57619 Mon Sep 17 00:00:00 2001 From: Frode Flaten <3436158+fflaten@users.noreply.github.com> Date: Thu, 16 Jul 2026 21:18:16 +0000 Subject: [PATCH] Fix codefence in examples --- src/functions/assert/Equivalence/Should-BeEquivalent.ps1 | 2 +- src/functions/assert/String/Should-BeEmptyString.ps1 | 2 +- src/functions/assert/String/Should-NotBeWhiteSpaceString.ps1 | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/src/functions/assert/Equivalence/Should-BeEquivalent.ps1 b/src/functions/assert/Equivalence/Should-BeEquivalent.ps1 index f919b18b8..ccaead993 100644 --- a/src/functions/assert/Equivalence/Should-BeEquivalent.ps1 +++ b/src/functions/assert/Equivalence/Should-BeEquivalent.ps1 @@ -650,7 +650,7 @@ function Should-BeEquivalent { This example generates an equivalency option object that excludes the 'Id' and 'Timestamp' properties from the comparison and uses a simple equality comparison strategy. .EXAMPLE - ```powereshell + ```powershell Should-BeEquivalent ... -ExcludePathsNotOnExpected ``` diff --git a/src/functions/assert/String/Should-BeEmptyString.ps1 b/src/functions/assert/String/Should-BeEmptyString.ps1 index 96e480cae..907876be2 100644 --- a/src/functions/assert/String/Should-BeEmptyString.ps1 +++ b/src/functions/assert/String/Should-BeEmptyString.ps1 @@ -29,7 +29,7 @@ This test will fail, the input is not an empty string. .EXAMPLE - ``` + ```powershell $null | Should-BeEmptyString @() | Should-BeEmptyString $() | Should-BeEmptyString diff --git a/src/functions/assert/String/Should-NotBeWhiteSpaceString.ps1 b/src/functions/assert/String/Should-NotBeWhiteSpaceString.ps1 index 162d7a5d5..1124082be 100644 --- a/src/functions/assert/String/Should-NotBeWhiteSpaceString.ps1 +++ b/src/functions/assert/String/Should-NotBeWhiteSpaceString.ps1 @@ -29,7 +29,7 @@ This test will fail, the input is a whitespace only string. .EXAMPLE - ``` + ```powershell $null | Should-NotBeWhiteSpaceString "" | Should-NotBeWhiteSpaceString $() | Should-NotBeWhiteSpaceString