aboutsummaryrefslogtreecommitdiff
path: root/lib/std/crypto/codecs
diff options
context:
space:
mode:
authorAndrew Kelley <andrew@ziglang.org>2025-12-08 13:39:09 -0800
committerAndrew Kelley <andrew@ziglang.org>2025-12-23 22:15:08 -0800
commitf53248a40936ebc9aaf75ddbd16e67ebec05ab84 (patch)
treeaf6a1a4fa4d3ff09dae241922a8f7c37cde43681 /lib/std/crypto/codecs
parent916998315967f73c91e682e9ea05dd3232818654 (diff)
downloadzig-f53248a40936ebc9aaf75ddbd16e67ebec05ab84.tar.gz
zig-f53248a40936ebc9aaf75ddbd16e67ebec05ab84.zip
update all std.fs.cwd() to std.Io.Dir.cwd()
Diffstat (limited to 'lib/std/crypto/codecs')
-rw-r--r--lib/std/crypto/codecs/asn1/test.zig4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/std/crypto/codecs/asn1/test.zig b/lib/std/crypto/codecs/asn1/test.zig
index ff854fcbde..3dbedb9f80 100644
--- a/lib/std/crypto/codecs/asn1/test.zig
+++ b/lib/std/crypto/codecs/asn1/test.zig
@@ -73,8 +73,8 @@ test AllTypes {
try std.testing.expectEqualSlices(u8, encoded, buf);
// Use this to update test file.
- // const dir = try std.fs.cwd().openDir("lib/std/crypto/asn1", .{});
- // var file = try dir.createFile(path, .{});
+ // const dir = try Io.Dir.cwd().openDir("lib/std/crypto/asn1", .{});
+ // var file = try dir.createFile(io, path, .{});
// defer file.close(io);
// try file.writeAll(buf);
}