about summary refs log tree commit diff stats
path: root/tutorial
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2021-10-20 12:32:58 -0700
committerKartik K. Agaram <vc@akkartik.com>2021-10-20 12:32:58 -0700
commit12615266b6aa99ac069b1c36e4489d50000f7cde (patch)
tree96e4f6477c51ee9a9bb5382f3c3427ec6841a0aa /tutorial
parent9320a557f759d0c5b70982fd1b7eaabd3d7ce3f6 (diff)
downloadmu-12615266b6aa99ac069b1c36e4489d50000f7cde.tar.gz
.
Diffstat (limited to 'tutorial')
-rw-r--r--tutorial/index.md8
1 files changed, 4 insertions, 4 deletions
diff --git a/tutorial/index.md b/tutorial/index.md
index 799aa0de..f9a1f8c7 100644
--- a/tutorial/index.md
+++ b/tutorial/index.md
@@ -39,7 +39,7 @@ page to be accessible to people who are in the process of learning
 programming, but I'm sure it isn't good enough yet for that. Ask me questions
 and help me improve it.
 
-# Task 1: getting started
+## Task 1: getting started
 
 Open a terminal and run the following commands to prepare Mu on your computer:
 
@@ -73,7 +73,7 @@ it. Just [get in touch](http://akkartik.name/contact).
 (You can look at `apps/ex5.mu` at this point if you like. It's just a few
 lines long. But don't worry if it doesn't make much sense.)
 
-# Task 2: running tests
+## Task 2: running tests
 
 Here's a new program to run:
 
@@ -99,7 +99,7 @@ messages from failing tests and implicitly asking you to first fix them.
 
 (Don't worry just yet about what the message in the middle of all the dots means.)
 
-# Task 3: configure your text editor
+## Task 3: configure your text editor
 
 So far we haven't used a text editor yet, but we will now be starting to do
 so. Before we do, it's worth spending a little bit of time setting your
@@ -116,7 +116,7 @@ It's particularly useful to highlight _comments_ which the computer ignores
 (everything on a line after a `#` character) and _strings_ within `""` double
 quotes.
 
-# Task 4: your first Mu statement
+## Task 4: your first Mu statement
 
 Mu is a statement-oriented language. Read the first section of the [Mu syntax
 description](https://github.com/akkartik/mu/blob/main/mu.md) to learn a little