aboutsummaryrefslogtreecommitdiffstats
path: root/core/cell.moon
diff options
context:
space:
mode:
Diffstat (limited to 'core/cell.moon')
-rw-r--r--core/cell.moon4
1 files changed, 2 insertions, 2 deletions
diff --git a/core/cell.moon b/core/cell.moon
index c052d46..724b74e 100644
--- a/core/cell.moon
+++ b/core/cell.moon
@@ -23,8 +23,8 @@ class Cell
Action\eval_cell scope, @tag, head, @tail!
- -- quoting a Cell recursively quotes children, but preserves identity this
- -- means that a quoted Cell may only be 'used' once. use :clone() otherwise.
+ -- quoting a Cell recursively quotes children, but preserves identity. This
+ -- means that a quoted Cell may only be 'used' once. Use :clone() otherwise.
quote: (scope) =>
children = [child\quote scope for child in *@children]
Cell @tag, children, @white