drop the 'the'... it's cleaner

This commit is contained in:
Judah Caruso 2025-05-19 12:41:23 -06:00
parent 7da88d9db1
commit 674b479ad8

View file

@ -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);