about summary refs log tree commit diff stats
path: root/mu.md
diff options
context:
space:
mode:
authorKartik Agaram <vc@akkartik.com>2020-07-06 11:09:02 -0700
committerKartik Agaram <vc@akkartik.com>2020-07-06 11:09:02 -0700
commit8620c1edc329bb30e19419b55654b540712b6033 (patch)
treec7d9a746cd1eaff4cbb2a22c34288db25e809b8b /mu.md
parent55b9ef9a1fdc7724b1f8c5a054b04c0d028836d4 (diff)
downloadmu-8620c1edc329bb30e19419b55654b540712b6033.tar.gz
6620
Diffstat (limited to 'mu.md')
-rw-r--r--mu.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/mu.md b/mu.md
index 04c79fb8..26d04eec 100644
--- a/mu.md
+++ b/mu.md
@@ -47,7 +47,7 @@ Zooming out from single statements, here's a complete sample program in Mu:
 Mu programs are lists of functions. Each function has the following form:
 
   ```
-  fn _name_ inout ... -> output ... {
+  fn _name_ _inout_ ... -> _output_ ... {
     _statement_
     _statement_
     ...