about summary refs log tree commit diff stats
path: root/baremetal
diff options
context:
space:
mode:
Diffstat (limited to 'baremetal')
-rw-r--r--baremetal/shell/gap-buffer.mu1
-rw-r--r--baremetal/shell/grapheme-stack.mu1
2 files changed, 0 insertions, 2 deletions
diff --git a/baremetal/shell/gap-buffer.mu b/baremetal/shell/gap-buffer.mu
index 80e9bc54..4ec78789 100644
--- a/baremetal/shell/gap-buffer.mu
+++ b/baremetal/shell/gap-buffer.mu
@@ -1,5 +1,4 @@
 # primitive for editing a single word
-# parameter: max-word-size = 16 graphemes
 
 type gap-buffer {
   left: grapheme-stack
diff --git a/baremetal/shell/grapheme-stack.mu b/baremetal/shell/grapheme-stack.mu
index 418322e0..8a4bbd0a 100644
--- a/baremetal/shell/grapheme-stack.mu
+++ b/baremetal/shell/grapheme-stack.mu
@@ -1,5 +1,4 @@
 # grapheme stacks are the smallest unit of editable text
-# they are typically rendered horizontally
 
 type grapheme-stack {
   data: (handle array grapheme)