aboutsummaryrefslogtreecommitdiff
path: root/std
diff options
context:
space:
mode:
authorChristian Wesselhoeft <hi@xtian.us>2018-09-18 16:57:33 -0600
committerAndrew Kelley <superjoe30@gmail.com>2018-09-18 19:01:35 -0400
commit5eeef1f5ed5912d03bb8e744c6618734073af2ed (patch)
tree05d95dba7de17bed1f8efd4ed932bb8c6ff37eef /std
parent6dd93ee5d986405f521e9b4ed83ef669325f4e08 (diff)
downloadzig-5eeef1f5ed5912d03bb8e744c6618734073af2ed.tar.gz
zig-5eeef1f5ed5912d03bb8e744c6618734073af2ed.zip
std/index.zig: Fix import
BufferOutStream is defined in io.zig
Diffstat (limited to 'std')
-rw-r--r--std/index.zig2
1 files changed, 1 insertions, 1 deletions
diff --git a/std/index.zig b/std/index.zig
index cf61ff53b5..ec627c9fc6 100644
--- a/std/index.zig
+++ b/std/index.zig
@@ -3,7 +3,7 @@ pub const AlignedArrayList = @import("array_list.zig").AlignedArrayList;
pub const BufMap = @import("buf_map.zig").BufMap;
pub const BufSet = @import("buf_set.zig").BufSet;
pub const Buffer = @import("buffer.zig").Buffer;
-pub const BufferOutStream = @import("buffer.zig").BufferOutStream;
+pub const BufferOutStream = @import("io.zig").BufferOutStream;
pub const HashMap = @import("hash_map.zig").HashMap;
pub const AutoHashMap = @import("hash_map.zig").AutoHashMap;
pub const LinkedList = @import("linked_list.zig").LinkedList;