lib/standard/stream: Renamed streams for more explicit denomination
[nit.git] / contrib / brainfuck / brainfuck.nit
index c35b08a..f7de908 100644 (file)
@@ -39,7 +39,7 @@ class BFInterpreter
 
        # Create an interpreter for the file located at `path`.
        init from_file(path: String) do
-               var ifs = new IFStream.open(path)
+               var ifs = new FileReader.open(path)
                init(ifs.read_all)
        end