aboutsummaryrefslogtreecommitdiff
path: root/lib/compiler/std-docs.zig
diff options
context:
space:
mode:
authorAndrew Kelley <andrew@ziglang.org>2025-08-27 21:20:18 -0700
committerAndrew Kelley <andrew@ziglang.org>2025-08-29 17:14:26 -0700
commit79f267f6b9e7f80a6fed3b1019f9de942841c3be (patch)
tree29a243d4aa85d8295cc06608bde59333ebdb843c /lib/compiler/std-docs.zig
parent558bea2a76179fcc00779fdd326e5a866956fc9b (diff)
downloadzig-79f267f6b9e7f80a6fed3b1019f9de942841c3be.tar.gz
zig-79f267f6b9e7f80a6fed3b1019f9de942841c3be.zip
std.Io: delete GenericReader
and delete deprecated alias std.io
Diffstat (limited to 'lib/compiler/std-docs.zig')
-rw-r--r--lib/compiler/std-docs.zig3
1 files changed, 1 insertions, 2 deletions
diff --git a/lib/compiler/std-docs.zig b/lib/compiler/std-docs.zig
index 76da5c98c5..b708294836 100644
--- a/lib/compiler/std-docs.zig
+++ b/lib/compiler/std-docs.zig
@@ -1,7 +1,6 @@
const builtin = @import("builtin");
const std = @import("std");
const mem = std.mem;
-const io = std.io;
const Allocator = std.mem.Allocator;
const assert = std.debug.assert;
const Cache = std.Build.Cache;
@@ -318,7 +317,7 @@ fn buildWasmBinary(
child.stderr_behavior = .Pipe;
try child.spawn();
- var poller = std.io.poll(gpa, enum { stdout, stderr }, .{
+ var poller = std.Io.poll(gpa, enum { stdout, stderr }, .{
.stdout = child.stdout.?,
.stderr = child.stderr.?,
});