aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorAndrew Kelley <andrew@ziglang.org>2025-08-31 12:48:45 -0700
committerAndrew Kelley <andrew@ziglang.org>2025-08-31 12:49:18 -0700
commitec36e0609fb97fef96e72fb76f5515b751519a61 (patch)
tree97e03a7f966ef80312be2f46b315ea84a74fd0ed /lib
parent150169f1e0cf08d4b76fed81fc205a63177b6e01 (diff)
downloadzig-ec36e0609fb97fef96e72fb76f5515b751519a61.tar.gz
zig-ec36e0609fb97fef96e72fb76f5515b751519a61.zip
delete behavior test that depends on std.fmt
behavior tests should have minimal dependency on std
Diffstat (limited to 'lib')
-rw-r--r--lib/std/debug.zig2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/std/debug.zig b/lib/std/debug.zig
index 2259111795..1ec1ca1e8a 100644
--- a/lib/std/debug.zig
+++ b/lib/std/debug.zig
@@ -1697,7 +1697,7 @@ pub fn ConfigurableTrace(comptime size: usize, comptime stack_frame_count: usize
pub fn format(
t: @This(),
comptime fmt: []const u8,
- options: std.fmt.FormatOptions,
+ options: std.fmt.Options,
writer: *Writer,
) !void {
if (fmt.len != 0) std.fmt.invalidFmtError(fmt, t);