Skip to content

Commit 472d919

Browse files
author
Bryan Ramos
committed
fix hash inspect output
1 parent 8011a61 commit 472d919

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

object/object.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ func (a *Array) Inspect() string {
133133

134134
out.WriteString("[")
135135
out.WriteString(strings.Join(elements, ", "))
136-
out.WriteString("0")
136+
out.WriteString("]")
137137

138138
return out.String()
139139
}

0 commit comments

Comments
 (0)