about summary refs log tree commit diff stats
path: root/088file.mu
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2016-08-22 08:35:35 -0700
committerKartik K. Agaram <vc@akkartik.com>2016-08-22 08:35:35 -0700
commitaefe0592e812dd2384a3c49d5b02a58010a14e36 (patch)
treeb447b1b25a698e333988fcbcb9d3e5242fabb4d3 /088file.mu
parent780b2ce115a64b863b584bb34fc359dfccfd06eb (diff)
downloadmu-aefe0592e812dd2384a3c49d5b02a58010a14e36.tar.gz
3243
Diffstat (limited to '088file.mu')
-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