diff options
| author | Stefan Majewsky <majewsky@gmx.net> | 2026-04-17 13:44:02 +0200 |
|---|---|---|
| committer | Stefan Majewsky <majewsky@gmx.net> | 2026-04-17 13:44:02 +0200 |
| commit | e73aee05956d7917e7d76ab793d5e2291ace6416 (patch) | |
| tree | 50caa4e83fa534fb03d8ff8e88da613584e1b870 | |
| parent | d964c2be59a73e6b21ce1a8031fe913588bddf66 (diff) | |
| download | go-oblast-e73aee05956d7917e7d76ab793d5e2291ace6416.tar.gz | |
fix lints
| -rw-r--r-- | oblast.go | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -187,5 +187,5 @@ func (e MissingRecordError[R]) Error() string { for idx, columnName := range e.plan.PrimaryKeyColumnNames { keyDescs[idx] = fmt.Sprintf("%s = %#v", columnName, v.FieldByIndex(e.plan.IndexByColumnName[columnName])) } - return fmt.Sprintf("could not UPDATE record that does not exist in the database: %s", strings.Join(keyDescs, ", ")) + return "could not UPDATE record that does not exist in the database: " + strings.Join(keyDescs, ", ") } |
