about summary refs log tree commit diff stats
path: root/src/io/teestream.nim
diff options
context:
space:
mode:
Diffstat (limited to 'src/io/teestream.nim')
-rw-r--r--src/io/teestream.nim2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/io/teestream.nim b/src/io/teestream.nim
index a8f5792e..f70d8c4f 100644
--- a/src/io/teestream.nim
+++ b/src/io/teestream.nim
@@ -1,7 +1,7 @@
 # TeeStream: write to another stream when reading from one stream.
 # See MultiStream for a push version.
 
-import streams
+import std/streams
 
 type TeeStream = ref object of Stream
   source: Stream