lib/core: fix nitunit that should have failed earlier because of bad ==
authorJean Privat <jean@pryen.org>
Mon, 21 Sep 2015 19:36:44 +0000 (15:36 -0400)
committerJean Privat <jean@pryen.org>
Mon, 21 Sep 2015 19:36:44 +0000 (15:36 -0400)
Signed-off-by: Jean Privat <jean@pryen.org>

lib/core/stream.nit

index 4b1e826..799d130 100644 (file)
@@ -275,7 +275,7 @@ abstract class Reader
        # ~~~
        # var w = new StringReader(" Hello, \n\t World!")
        # assert w.read_word == "Hello,"
-       # assert w.read_char == '\n'.ascii
+       # assert w.read_char == '\n'
        # assert w.read_word == "World!"
        # assert w.read_word == ""
        # ~~~