Don't require so much Pos() when making messages

This commit is contained in:
b
2026-08-21 22:36:36 -06:00
parent cc25ac923f
commit 17b2a0eee5
9 changed files with 81 additions and 69 deletions
+1 -1
View File
@@ -16,7 +16,7 @@ import (
"pgregory.net/rapid"
)
func Todo[T interface{Errorf(string,...any)}](t T) {
func Todo[T interface{ Errorf(string, ...any) }](t T) {
t.Errorf("TODO")
}