From 674b479ad89d6b40b0ca22450188ac5be76631a1 Mon Sep 17 00:00:00 2001 From: Judah Caruso Date: Mon, 19 May 2025 12:41:23 -0600 Subject: [PATCH] drop the 'the'... it's cleaner --- test/module.jai | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/module.jai b/test/module.jai index e22a754..376c660 100644 --- a/test/module.jai +++ b/test/module.jai @@ -42,7 +42,7 @@ expect :: (t: *T, cond: bool, message := "", args: ..Any, loc := #caller_locatio run :: (name: string, proc: Proc, loc := #caller_location) { filename := strings.path_filename(loc.fully_pathed_filename); - basic.print("test %,%: %...", filename, loc.line_number, name); + basic.print("%,%: %...", filename, loc.line_number, name); t: T; proc(*t);