This commit is contained in:
Kartik K. Agaram 2021-10-26 21:27:01 -07:00
parent 06a1928c8d
commit b16ece5ae8
2 changed files with 2 additions and 2 deletions

2
mu.md
View File

@ -1,4 +1,4 @@
# Mu reference
# Mu Reference
Mu programs are sequences of `fn` and `type` definitions.

View File

@ -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.