about summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--088file.mu4
1 files changed, 2 insertions, 2 deletions
diff --git a/088file.mu b/088file.mu
index 651f9e8a..09d3b0fa 100644
--- a/088file.mu
+++ b/088file.mu
@@ -1,4 +1,4 @@
-# Wrappers around file-system primitives that take a 'filesystem' object and
+# Wrappers around file system primitives that take a 'filesystem' object and
 # are thus easier to test.
 
 container filesystem [
@@ -15,7 +15,7 @@ def start-reading fs:address:filesystem, filename:address:array:character -> con
   load-ingredients
   {
     break-if fs
-    # real file-system
+    # real file system
     file:number <- $open-file-for-reading filename
     assert file, [file not found]
     contents:address:source:character, sink:address:sink:character <- new-channel 30