about summary refs log tree commit diff stats
path: root/tutorial
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2021-11-07 17:34:47 -0800
committerKartik K. Agaram <vc@akkartik.com>2021-11-07 17:34:51 -0800
commitd7389e15a86b2c9d6a35c578c325ee2c0dfa3926 (patch)
treecc78a7aad366dc1f4e4fc127f85f07300b0255b7 /tutorial
parent3ca102f0152f23718b72b35207e9272daf7514c3 (diff)
downloadmu-d7389e15a86b2c9d6a35c578c325ee2c0dfa3926.tar.gz
task 16: addressing sejo's feedback
I'm still not quite happy with this..
Diffstat (limited to 'tutorial')
-rw-r--r--tutorial/index.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/tutorial/index.md b/tutorial/index.md
index c19af1ee..48173fbb 100644
--- a/tutorial/index.md
+++ b/tutorial/index.md
@@ -609,14 +609,14 @@ for a really complex example of this sort of _procedural graphics_.
 
 ## Task 16: a simple app
 
-We now know how to read keys from keyboard and draw on the screen. Look at
+We now know how to read keys from keyboard and draw on the screen. Try out
 [tutorial/counter.mu](https://github.com/akkartik/mu/blob/main/tutorial/counter.mu)
 which implements a simple counter app.
 
 <img alt='screenshot of the counter app' src='counter.png'>
 
-Do all the parts make sense? Read the extensive vocabulary of functions for
-[drawing text to screen](https://github.com/akkartik/mu/blob/main/vocabulary.md#printing-to-screen).
+Now look at its code. Do all the parts make sense? Reread the extensive
+vocabulary of functions for [drawing text to screen](https://github.com/akkartik/mu/blob/main/vocabulary.md#printing-to-screen).
 
 ---