about summary refs log tree commit diff stats
path: root/html/edit
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2016-12-11 16:19:37 -0800
committerKartik K. Agaram <vc@akkartik.com>2016-12-11 16:19:37 -0800
commitd81fcff20567a1d5e793e813bc761222885660b1 (patch)
tree6733adff9f1b231c21c9caeb7705d712e77b3762 /html/edit
parent294b2ab35983ebe95698835bb54bca8bd3eec101 (diff)
downloadmu-d81fcff20567a1d5e793e813bc761222885660b1.tar.gz
3706
Diffstat (limited to 'html/edit')
-rw-r--r--html/edit/003-shortcuts.mu.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/html/edit/003-shortcuts.mu.html b/html/edit/003-shortcuts.mu.html
index 504afa7f..1f6ab8f0 100644
--- a/html/edit/003-shortcuts.mu.html
+++ b/html/edit/003-shortcuts.mu.html
@@ -1391,7 +1391,7 @@ d]
   <span class="Comment"># update before-cursor</span>
   before-cursor:&amp;:duplex-list:char <span class="Special">&lt;-</span> get *editor, <span class="Constant">before-cursor:offset</span>
   init:&amp;:duplex-list:char <span class="Special">&lt;-</span> get *editor, <span class="Constant">data:offset</span>
-  <span class="Comment"># while not at start of line, move </span>
+  <span class="Comment"># while not at start of line, move</span>
   <span class="Delimiter">{</span>
     at-start-of-text?:bool <span class="Special">&lt;-</span> equal before-cursor, init
     <span class="muControl">break-if</span> at-start-of-text?
@@ -1560,7 +1560,7 @@ d]
   <span class="Constant">load-ingredients</span>
   before-cursor:&amp;:duplex-list:char <span class="Special">&lt;-</span> get *editor, <span class="Constant">before-cursor:offset</span>
   cursor-column:num <span class="Special">&lt;-</span> get *editor, <span class="Constant">cursor-column:offset</span>
-  <span class="Comment"># while not at start of line, move </span>
+  <span class="Comment"># while not at start of line, move</span>
   <span class="Delimiter">{</span>
     next:&amp;:duplex-list:char <span class="Special">&lt;-</span> next before-cursor
     <span class="muControl">break-unless</span> next  <span class="Comment"># end of text</span>