Skip to content

Commit 55e4c72

Browse files
author
roman.tarasov
committed
go fmt applied
1 parent 4d82ab9 commit 55e4c72

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

bson/encode.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -123,7 +123,7 @@ func NewDocumentEncoder() DocumentEncoder {
123123
}
124124

125125
func convertTimeToInt64(t time.Time) int64 {
126-
return t.Unix()*1000+int64(t.Nanosecond()/1e6)
126+
return t.Unix()*1000 + int64(t.Nanosecond()/1e6)
127127
}
128128

129129
func (e *encoder) Encode(v interface{}) error {

0 commit comments

Comments
 (0)