From 1aad60b49a32b6bced95a251f266799c031ca83e Mon Sep 17 00:00:00 2001 From: JP Appel Date: Fri, 21 Nov 2025 20:50:42 -0500 Subject: Update documentation, comments, and tidy codebase --- pkg/data/put_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'pkg/data/put_test.go') diff --git a/pkg/data/put_test.go b/pkg/data/put_test.go index a450196..e4a3c57 100644 --- a/pkg/data/put_test.go +++ b/pkg/data/put_test.go @@ -45,7 +45,7 @@ func TestPut_Insert(t *testing.T) { p := data.NewPut(db, tt.doc) gotErr := p.Insert(t.Context()) if !errors.Is(gotErr, tt.wantErr) { - t.Fatalf("Unexpected error on Insert():, want %v got %v", tt.wantErr, gotErr) + t.Fatalf("Unexpected error on Insert(): want %v got %v", tt.wantErr, gotErr) } else if gotErr != nil { return } -- cgit v1.2.3