diff options
author | Kartik K. Agaram <vc@akkartik.com> | 2016-08-22 08:35:35 -0700 |
---|---|---|
committer | Kartik K. Agaram <vc@akkartik.com> | 2016-08-22 08:35:35 -0700 |
commit | aefe0592e812dd2384a3c49d5b02a58010a14e36 (patch) | |
tree | b447b1b25a698e333988fcbcb9d3e5242fabb4d3 | |
parent | 780b2ce115a64b863b584bb34fc359dfccfd06eb (diff) | |
download | mu-aefe0592e812dd2384a3c49d5b02a58010a14e36.tar.gz |
3243
-rw-r--r-- | 088file.mu | 4 |
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 |