Skip to content

Commit 22f9aeb

Browse files
committed
silly silly πŸ˜†
1 parent cd3abed commit 22f9aeb

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

β€Žknownvalue/object.goβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ func createDeltaString[T any, V any](mapA map[string]T, mapB map[string]V, msgPr
106106
for i, k := range deltaKeys {
107107
if i == 0 {
108108
deltaMsg += msgPrefix
109-
} else if i != 0 {
109+
} else {
110110
deltaMsg += ", "
111111
}
112112
deltaMsg += fmt.Sprintf("%q", k)

β€Žstatecheck/expect_identity.goβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ func createDeltaString[T any, V any](mapA map[string]T, mapB map[string]V, msgPr
128128
for i, k := range deltaKeys {
129129
if i == 0 {
130130
deltaMsg += msgPrefix
131-
} else if i != 0 {
131+
} else {
132132
deltaMsg += ", "
133133
}
134134
deltaMsg += fmt.Sprintf("%q", k)

0 commit comments

Comments
Β (0)