about summary refs log tree commit diff stats
path: root/real_files.mu
diff options
context:
space:
mode:
Diffstat (limited to 'real_files.mu')
-rw-r--r--real_files.mu2
1 files changed, 1 insertions, 1 deletions
diff --git a/real_files.mu b/real_files.mu
index 0411d872..78108fbe 100644
--- a/real_files.mu
+++ b/real_files.mu
@@ -5,7 +5,7 @@
 
 def main [
   local-scope
-  f:number/file <- $open-file-for-reading [/tmp/mu-x]
+  f:num/file <- $open-file-for-reading [/tmp/mu-x]
   $print [file to read from: ], f, 10/newline
   c:char, eof?:boolean <- $read-from-file f
   $print [copying ], c, 10/newline