diff options
author | Kartik K. Agaram <vc@akkartik.com> | 2016-10-22 16:56:07 -0700 |
---|---|---|
committer | Kartik K. Agaram <vc@akkartik.com> | 2016-10-22 16:56:07 -0700 |
commit | 9a81d7460fdb16f4e77712e5381d9db8781f5ae6 (patch) | |
tree | 43b05169535fe33e65ecbf61f3fb3ada5f75ed52 /edit | |
parent | 22f4b76344b2d639cbfcaad56ed681670d436548 (diff) | |
download | mu-9a81d7460fdb16f4e77712e5381d9db8781f5ae6.tar.gz |
3561
Diffstat (limited to 'edit')
-rw-r--r-- | edit/001-editor.mu | 2 | ||||
-rw-r--r-- | edit/005-sandbox.mu | 2 | ||||
-rw-r--r-- | edit/011-errors.mu | 2 | ||||
-rw-r--r-- | edit/Readme.md | 4 |
4 files changed, 5 insertions, 5 deletions
diff --git a/edit/001-editor.mu b/edit/001-editor.mu index 82f4c4fa..133a8472 100644 --- a/edit/001-editor.mu +++ b/edit/001-editor.mu @@ -364,7 +364,7 @@ scenario editor-initializes-empty-text [ ] ] -# just a little color for mu code +# just a little color for Mu code scenario render-colors-comments [ local-scope diff --git a/edit/005-sandbox.mu b/edit/005-sandbox.mu index bc0488f7..b5380202 100644 --- a/edit/005-sandbox.mu +++ b/edit/005-sandbox.mu @@ -184,7 +184,7 @@ def run-sandboxes env:&:environment, screen:&:screen -> errors-found?:bool, env: <run-sandboxes-end> ] -# copy code from recipe editor, persist, load into mu +# copy code from recipe editor, persist to disk, load # replaced in a later layer (whereupon errors-found? will actually be set) def update-recipes env:&:environment, screen:&:screen -> errors-found?:bool, env:&:environment, screen:&:screen [ local-scope diff --git a/edit/011-errors.mu b/edit/011-errors.mu index c0d4a63b..23c2c172 100644 --- a/edit/011-errors.mu +++ b/edit/011-errors.mu @@ -4,7 +4,7 @@ container environment [ recipe-errors:text ] -# copy code from recipe editor, persist, load into mu, save any errors +# copy code from recipe editor, persist to disk, load, save any errors def! update-recipes env:&:environment, screen:&:screen -> errors-found?:bool, env:&:environment, screen:&:screen [ local-scope load-ingredients diff --git a/edit/Readme.md b/edit/Readme.md index 30b27d9b..280c3500 100644 --- a/edit/Readme.md +++ b/edit/Readme.md @@ -1,6 +1,6 @@ -Environment for learning programming using mu: http://akkartik.name/post/mu +Environment for learning programming using Mu: http://akkartik.name/post/mu -Run it from the mu directory: +Run it from the `mu` directory: ```shell $ ./mu edit |