about summary refs log tree commit diff stats
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2021-10-26 21:27:01 -0700
committerKartik K. Agaram <vc@akkartik.com>2021-10-26 21:27:01 -0700
commitb16ece5ae843b0d7bf3999e3cb43dc0ee085eb0d (patch)
tree1274fd1ab663b59a718bbee6f4cac1008e862b7c
parent06a1928c8df278df9c6aff60d5f316ffe1babb67 (diff)
downloadmu-b16ece5ae843b0d7bf3999e3cb43dc0ee085eb0d.tar.gz
.
-rw-r--r--mu.md2
-rw-r--r--tutorial/index.md2
2 files changed, 2 insertions, 2 deletions
diff --git a/mu.md b/mu.md
index 00105d85..ff697d32 100644
--- a/mu.md
+++ b/mu.md
@@ -1,4 +1,4 @@
-# Mu reference
+# Mu Reference
 
 Mu programs are sequences of `fn` and `type` definitions.
 
diff --git a/tutorial/index.md b/tutorial/index.md
index c4cda66b..68dd29aa 100644
--- a/tutorial/index.md
+++ b/tutorial/index.md
@@ -123,7 +123,7 @@ quotes.
 
 Mu is a statement-oriented language. Most statements translate into a single
 instruction to the x86 processor. Quickly read the first two sections of the
-[Mu syntax description](https://github.com/akkartik/mu/blob/main/mu.md) (about
+[Mu reference](https://github.com/akkartik/mu/blob/main/mu.md) (about
 functions and variables) to learn a little bit about it. It's ok if it doesn't
 all make sense just yet. We'll reread it later.