zig

fork of https://codeberg.org/ziglang/zig
Log | Files | Refs | README | LICENSE

commit 5e0d8a435e51f7b5eb51d286bfaf0adb32d90381 (tree)
parent 9a2f17f9f9dfde9c5438ccb439b727e1e814c4f5
Author: Jacob Young <jacobly0@users.noreply.github.com>
Date:   Wed, 28 Sep 2022 23:02:49 -0400

testing: fix copy paste typo

Diffstat:
Mlib/std/testing.zig | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lib/std/testing.zig b/lib/std/testing.zig @@ -494,7 +494,7 @@ pub fn expectStringStartsWith(actual: []const u8, expected_starts_with: []const print("\n====== expected to start with: =========\n", .{}); printWithVisibleNewlines(expected_starts_with); - print("\n====== instead ended with: ===========\n", .{}); + print("\n====== instead started with: ===========\n", .{}); printWithVisibleNewlines(shortened_actual); print("\n========= full output: ==============\n", .{}); printWithVisibleNewlines(actual);