aboutsummaryrefslogtreecommitdiff
path: root/lib/std/array_list.zig
diff options
context:
space:
mode:
Diffstat (limited to 'lib/std/array_list.zig')
-rw-r--r--lib/std/array_list.zig3
1 files changed, 0 insertions, 3 deletions
diff --git a/lib/std/array_list.zig b/lib/std/array_list.zig
index 4f1cb11bc7..f30a86d8f7 100644
--- a/lib/std/array_list.zig
+++ b/lib/std/array_list.zig
@@ -242,9 +242,6 @@ pub fn ArrayListAligned(comptime T: type, comptime alignment: ?u29) type {
return .{ .context = self };
}
- /// Deprecated: use `writer`
- pub const outStream = writer;
-
/// Same as `append` except it returns the number of bytes written, which is always the same
/// as `m.len`. The purpose of this function existing is to match `std.io.Writer` API.
fn appendWrite(self: *Self, m: []const u8) !usize {