about summary refs log tree commit diff stats
path: root/012transform.cc
diff options
context:
space:
mode:
Diffstat (limited to '012transform.cc')
-rw-r--r--012transform.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/012transform.cc b/012transform.cc
index 8395bcd6..2a2cfb9b 100644
--- a/012transform.cc
+++ b/012transform.cc
@@ -1,12 +1,12 @@
 //: Phase 2: Filter loaded recipes through an extensible list of 'transforms'.
 //:
-//:   The process of running mu code:
+//:   The process of running Mu code:
 //:     load -> transform -> run
 //:
 //: The hope is that this framework of transform tools will provide a
 //: deconstructed alternative to conventional compilers.
 //:
-//: We're going to have many transforms in mu, and getting their order right
+//: We're going to have many transforms in Mu, and getting their order right
 //: (not the same as ordering of layers) is a well-known problem. Some tips:
 //:   a) Design each layer to rely on as few previous layers as possible.
 //: