diff options
author | Kartik K. Agaram <vc@akkartik.com> | 2016-11-25 10:51:38 -0800 |
---|---|---|
committer | Kartik K. Agaram <vc@akkartik.com> | 2016-11-25 10:58:31 -0800 |
commit | 1166938707b1396a1ece0b8eef6ebd769e6fadf9 (patch) | |
tree | e5a0f49f75ad38659f84c3fbe15cad195d2d548f | |
parent | 8be3aef52ac108daed6da379c586a0ebcade599d (diff) | |
download | mu-1166938707b1396a1ece0b8eef6ebd769e6fadf9.tar.gz |
3686
-rw-r--r-- | edit/005-sandbox.mu | 8 | ||||
-rw-r--r-- | html/edit/005-sandbox.mu.html | 8 |
2 files changed, 8 insertions, 8 deletions
diff --git a/edit/005-sandbox.mu b/edit/005-sandbox.mu index b5380202..8cd21fa0 100644 --- a/edit/005-sandbox.mu +++ b/edit/005-sandbox.mu @@ -1,11 +1,11 @@ ## running code from the editor and creating sandboxes # # Running code in the sandbox editor prepends its contents to a list of -# (non-editable) sandboxes below the editor, showing the result and a maybe -# few other things. +# (non-editable) sandboxes below the editor, showing the result and maybe a +# few other things (later layers). # -# This layer draws the menubar buttons non-editable sandboxes but they don't -# do anything yet. Later layers implement each button. +# This layer draws the menubar buttons in non-editable sandboxes but they +# don't do anything yet. Later layers implement each button. def! main [ local-scope diff --git a/html/edit/005-sandbox.mu.html b/html/edit/005-sandbox.mu.html index 91e61166..e9c83191 100644 --- a/html/edit/005-sandbox.mu.html +++ b/html/edit/005-sandbox.mu.html @@ -36,11 +36,11 @@ body { font-size: 12pt; font-family: monospace; color: #eeeeee; background-color <span class="SalientComment">## running code from the editor and creating sandboxes</span> <span class="Comment">#</span> <span class="Comment"># Running code in the sandbox editor prepends its contents to a list of</span> -<span class="Comment"># (non-editable) sandboxes below the editor, showing the result and a maybe</span> -<span class="Comment"># few other things.</span> +<span class="Comment"># (non-editable) sandboxes below the editor, showing the result and maybe a</span> +<span class="Comment"># few other things (later layers).</span> <span class="Comment">#</span> -<span class="Comment"># This layer draws the menubar buttons non-editable sandboxes but they don't</span> -<span class="Comment"># do anything yet. Later layers implement each button.</span> +<span class="Comment"># This layer draws the menubar buttons in non-editable sandboxes but they</span> +<span class="Comment"># don't do anything yet. Later layers implement each button.</span> <span class="muRecipe">def!</span> main [ <span class="Constant">local-scope</span> |