aboutsummaryrefslogtreecommitdiff
path: root/docs/help/assert_assertwithmessage.html
diff options
context:
space:
mode:
authorMarshall Lochbaum <mwlochbaum@gmail.com>2022-01-24 20:18:08 -0500
committerMarshall Lochbaum <mwlochbaum@gmail.com>2022-01-24 20:18:08 -0500
commitbc0245f0be38e547ad76bcd719c6dedbb161f0f4 (patch)
tree3649c29ade245e5a2fb8b2c47e19ac7b2d707a91 /docs/help/assert_assertwithmessage.html
parent5566ea9429f75b54a8cffb9ebea7747ea651d52c (diff)
Remove extra leading spaces from code examples
Diffstat (limited to 'docs/help/assert_assertwithmessage.html')
-rw-r--r--docs/help/assert_assertwithmessage.html12
1 files changed, 6 insertions, 6 deletions
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 @@
<h1 id="exclamation-mark-"><a class="header" href="#exclamation-mark-">Exclamation Mark (<code><span class='Function'>!</span></code>)</a></h1>
<h2 id="-𝕩-assert"><a class="header" href="#-𝕩-assert"><code><span class='Function'>!</span> <span class='Value'>𝕩</span></code>: Assert</a></h2>
<p>Throw an error if <code><span class='Value'>𝕩</span></code> is not 1.</p>
-<a class="replLink" title="Open in the REPL" target="_blank" href="https://mlochbaum.github.io/BQN/try.html#code=ICAgISAxCgogICAhIDIKCiAgICEgImhlbGxvIg==">↗️</a><pre> <span class='Function'>!</span> <span class='Number'>1</span>
+<a class="replLink" title="Open in the REPL" target="_blank" href="https://mlochbaum.github.io/BQN/try.html#code=ISAxCgohIDIKCiEgImhlbGxvIg==">↗️</a><pre> <span class='Function'>!</span> <span class='Number'>1</span>
1
- <span class='Function'>!</span> <span class='Number'>2</span>
+ <span class='Function'>!</span> <span class='Number'>2</span>
<span class='Error'>Error: Assertion error</span>
- <span class='Function'>!</span> <span class='String'>&quot;hello&quot;</span>
+ <span class='Function'>!</span> <span class='String'>&quot;hello&quot;</span>
<span class='Error'>Error: hello</span>
</pre>
<h2 id="𝕨--𝕩-assert-with-message"><a class="header" href="#𝕨--𝕩-assert-with-message"><code><span class='Value'>𝕨</span> <span class='Function'>!</span> <span class='Value'>𝕩</span></code>: Assert With Message</a></h2>
<p>Throw an error with message <code><span class='Value'>𝕨</span></code> if <code><span class='Value'>𝕩</span></code> is not 1.</p>
-<a class="replLink" title="Open in the REPL" target="_blank" href="https://mlochbaum.github.io/BQN/try.html#code=ICAgImhpIiAhIDEKCiAgICJ0d28iICEgMgoKICAgImhlbGxvIGVycm9yIiAhICJoZWxsbyI=">↗️</a><pre> <span class='String'>&quot;hi&quot;</span> <span class='Function'>!</span> <span class='Number'>1</span>
+<a class="replLink" title="Open in the REPL" target="_blank" href="https://mlochbaum.github.io/BQN/try.html#code=ImhpIiAhIDEKCiJ0d28iICEgMgoKImhlbGxvIGVycm9yIiAhICJoZWxsbyI=">↗️</a><pre> <span class='String'>&quot;hi&quot;</span> <span class='Function'>!</span> <span class='Number'>1</span>
1
- <span class='String'>&quot;two&quot;</span> <span class='Function'>!</span> <span class='Number'>2</span>
+ <span class='String'>&quot;two&quot;</span> <span class='Function'>!</span> <span class='Number'>2</span>
<span class='Error'>Error: two</span>
- <span class='String'>&quot;hello error&quot;</span> <span class='Function'>!</span> <span class='String'>&quot;hello&quot;</span>
+ <span class='String'>&quot;hello error&quot;</span> <span class='Function'>!</span> <span class='String'>&quot;hello&quot;</span>
<span class='Error'>Error: hello error</span>
</pre>