From bc0245f0be38e547ad76bcd719c6dedbb161f0f4 Mon Sep 17 00:00:00 2001 From: Marshall Lochbaum Date: Mon, 24 Jan 2022 20:18:08 -0500 Subject: Remove extra leading spaces from code examples --- docs/help/assert_assertwithmessage.html | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) (limited to 'docs/help/assert_assertwithmessage.html') diff --git a/docs/help/assert_assertwithmessage.html b/docs/help/assert_assertwithmessage.html index 92140c18..4ea46b7b 100644 --- a/docs/help/assert_assertwithmessage.html +++ b/docs/help/assert_assertwithmessage.html @@ -7,23 +7,23 @@

Exclamation Mark (!)

! 𝕩: Assert

Throw an error if 𝕩 is not 1.

-↗️
       ! 1
+↗️
    ! 1
 1
 
-       ! 2
+    ! 2
 Error: Assertion error
 
-       ! "hello"
+    ! "hello"
 Error: hello
 

𝕨 ! 𝕩: Assert With Message

Throw an error with message 𝕨 if 𝕩 is not 1.

-↗️
       "hi" ! 1
+↗️
    "hi" ! 1
 1
 
-       "two" ! 2
+    "two" ! 2
 Error: two
 
-       "hello error" ! "hello"
+    "hello error" ! "hello"
 Error: hello error
 
-- cgit v1.2.3