aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarshall Lochbaum <mwlochbaum@gmail.com>2022-07-31 09:14:26 -0400
committerMarshall Lochbaum <mwlochbaum@gmail.com>2022-07-31 09:14:26 -0400
commite219af48401473a7bac49bdd8b89d69082cf5dd8 (patch)
treebe09d59dabb41cc1b674c395388ea30d81dc1b5f
parentb18eea502ebf0616cd099cad7f1e9a5f38076560 (diff)
Remove discussion left over from older example code (closes #74)
-rw-r--r--docs/tutorial/variable.html2
-rw-r--r--tutorial/variable.md2
2 files changed, 2 insertions, 2 deletions
diff --git a/docs/tutorial/variable.html b/docs/tutorial/variable.html
index 9314a878..ad85a517 100644
--- a/docs/tutorial/variable.html
+++ b/docs/tutorial/variable.html
@@ -344,7 +344,7 @@
<span class='Value'>a</span> <span class='Comment'># It hasn't changed, of course
</span>⟨ 4 3 2 1 0 ⟩
</pre>
-<p>The code to do this looks the same as what we did with Reverse (<code><span class='Function'>⌽</span></code>). Again we don't have to parenthesize the function, because modifiers associate from left to right, so Under (<code><span class='Modifier2'>⌾</span></code>) binds to its operands before Compose (<code><span class='Modifier2'>∘</span></code>) does.</p>
+<p>The code to do this looks the same as what we did with Reverse (<code><span class='Function'>⌽</span></code>).</p>
<a class="replLink" title="Open in the REPL" target="_blank" href="https://mlochbaum.github.io/BQN/try.html#code=YSDihpAgNCAgICAgICAgICAgICMgRmlyc3QgaXQncyBhIG51bWJlcgphIOKGqSA04oC/NeKAvzYgICAgICAgICMgTm93IGl0J3MgYSBsaXN0IQphIOKGqSBhIC0gMQphIC3ihqkgMQphIOKIvsuc4oapIDDigL8xCmEg4oy94oiY4oqj4oapIEAKYSDijL3ihqkKYSA04oq4LeKGqSAgICAgICAgICAgIyBBbmQgYmFjayBhZ2FpbgphIC3in5w04oy+KMKvMuKKuOKGkSnihqk=">↗️</a><pre> <span class='Value'>a</span> <span class='Function'>-</span><span class='Modifier2'>⟜</span><span class='Number'>4</span><span class='Modifier2'>⌾</span><span class='Paren'>(</span><span class='Number'>¯2</span><span class='Modifier2'>⊸</span><span class='Function'>↑</span><span class='Paren'>)</span><span class='Gets'>↩</span>
⟨ 4 3 2 ¯3 ¯4 ⟩
</pre>
diff --git a/tutorial/variable.md b/tutorial/variable.md
index c9deba12..372c0352 100644
--- a/tutorial/variable.md
+++ b/tutorial/variable.md
@@ -252,6 +252,6 @@ Notice that there's no need for parentheses: modifiers bind more strongly than t
a # It hasn't changed, of course
-The code to do this looks the same as what we did with Reverse (`⌽`). Again we don't have to parenthesize the function, because modifiers associate from left to right, so Under (`⌾`) binds to its operands before Compose (`∘`) does.
+The code to do this looks the same as what we did with Reverse (`⌽`).
a -⟜4⌾(¯2⊸↑)↩