diff options
Diffstat (limited to 'lib/bio/test/bio-read.myr')
-rw-r--r-- | lib/bio/test/bio-read.myr | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/bio/test/bio-read.myr b/lib/bio/test/bio-read.myr index 829b442..3e477c2 100644 --- a/lib/bio/test/bio-read.myr +++ b/lib/bio/test/bio-read.myr @@ -40,12 +40,12 @@ const main = { const r = {f, buf match bio.read(f, buf) - | `bio.Ok b: + | `std.Ok b: -> b - | `bio.Eof: + | `std.Err `bio.Eof: std.put("eof\n") -> "" - | `bio.Err e: + | `std.Err e: std.put("err\n") -> "" ;; |