From 8abd167986f1eabca36a1a738f702824a2013105 Mon Sep 17 00:00:00 2001 From: Fredrik Ekre Date: Wed, 29 Sep 2021 12:48:43 +0200 Subject: [PATCH] Update README example. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index ad0b18d..fc357b8 100644 --- a/README.md +++ b/README.md @@ -16,7 +16,7 @@ Construct a tee stream by wrapping multiple writable IO objects, call function `f` on the tee, and automatically calls `close` on all IO streams: ```julia -TeeStream(f::Function, io::IO...) do tee +TeeStream(io::IO...) do tee write(tee, ...) end ```