about summary refs log tree commit diff stats
path: root/index.html
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2017-10-26 16:58:55 -0700
committerKartik K. Agaram <vc@akkartik.com>2017-10-26 16:58:55 -0700
commita675eda3939602bf6d21e06d4be06988aaad7569 (patch)
tree37064baa794b83ac70e4fe8debefe0d76a794ea4 /index.html
parent514f0e34aa25317e069d9a154fe76826829a8d88 (diff)
downloadmu-a675eda3939602bf6d21e06d4be06988aaad7569.tar.gz
4090
Diffstat (limited to 'index.html')
-rw-r--r--index.html8
1 files changed, 4 insertions, 4 deletions
diff --git a/index.html b/index.html
index 8b704838..029f717c 100644
--- a/index.html
+++ b/index.html
@@ -42,7 +42,7 @@ faked for testing.
 <li><a href='html/http-client.mu.html'>http-client.mu</a> and <a href='html/http-server.mu.html'>http-server.mu</a>,
 examples of Mu's testable high-level interfaces to the network.
 <li><a href='html/static-dispatch.mu.html'>static-dispatch.mu</a>: example
-program showing mu's ability to define recipes with headers, and thereby to
+program showing Mu's ability to define recipes with headers, and thereby to
 allow functions with the same name but arguments of different types to
 coexist.
 <li><a href='html/counters.mu.html'>counters.mu</a>: lexical scope
@@ -52,7 +52,7 @@ screen and keyboard handling.
 <li><a href='html/nqueens.mu.html'>nqueens.mu</a>: a solution to the <a href='http://rosettacode.org/wiki/N-queens_problem'>N queens problem</a>.
 </ul>
 
-Now a listing of every layer in mu. Recall that you can <a href='http://akkartik.name/post/wart-layers'>stop
+Now a listing of every layer in Mu. Recall that you can <a href='http://akkartik.name/post/wart-layers'>stop
 loading at any layer and get a valid program to run with a subset of features,
 that passes all its tests</a>.
 
@@ -276,7 +276,7 @@ support for various keyboard shortcuts for manipulating text you've typed in.
 <br/><a href='html/edit/004-programming-environment.mu.html'>edit/004-programming-environment.mu</a>:
 combining two text editor widgets, one on the left, one on the right.
 <br/><a href='html/edit/005-sandbox.mu.html'>edit/005-sandbox.mu</a>: support
-for running mu code in the right-hand widget using code from the left, and
+for running Mu code in the right-hand widget using code from the left, and
 displaying results in a <em>sandbox</em> below on the right. You can have
 multiple sandboxes, and hit F4 to rerun them all at any time with the latest
 version of the code on the left side.
@@ -304,7 +304,7 @@ support for undo in the editor widget.
 <hr>
 
 <p>
-The zen of mu:
+The zen of Mu:
 <ul>
 <li>traces, not interfaces
 <li>be rewrite-friendly, not backwards-compatible