about summary refs log tree commit diff stats
path: root/080display.cc
diff options
context:
space:
mode:
Diffstat (limited to '080display.cc')
-rw-r--r--080display.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/080display.cc b/080display.cc
index 52ac4283..6518c91c 100644
--- a/080display.cc
+++ b/080display.cc
@@ -43,9 +43,9 @@ case OPEN_CONSOLE: {
   int height = tb_height();
   if (width > 222 || height > 222) tb_shutdown();
   if (width > 222)
-    raise << "sorry, mu doesn't support windows wider than 222 characters in console mode. Please resize your window.\n" << end();
+    raise << "sorry, Mu doesn't support windows wider than 222 characters in console mode. Please resize your window.\n" << end();
   if (height > 222)
-    raise << "sorry, mu doesn't support windows taller than 222 characters in console mode. Please resize your window.\n" << end();
+    raise << "sorry, Mu doesn't support windows taller than 222 characters in console mode. Please resize your window.\n" << end();
   break;
 }
 
@@ -527,7 +527,7 @@ case INTERACTIONS_LEFT: {
   break;
 }
 
-//: a hack to make edit.mu more responsive
+//: hack to make text-mode apps more responsive under Unix
 
 :(before "End Primitive Recipe Declarations")
 CLEAR_DISPLAY_FROM,