Skip to content

Commit 0a8ced1

Browse files
authored
Add missing import comment (uber-go#574)
We let one exposed package sneak through without an import comment. There's no practical way for anyone to be using with the wrong import path, but let's clean up anyways.
1 parent 2bb0e73 commit 0a8ced1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

buffer/buffer.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
// Package buffer provides a thin wrapper around a byte slice. Unlike the
2222
// standard library's bytes.Buffer, it supports a portion of the strconv
2323
// package's zero-allocation formatters.
24-
package buffer
24+
package buffer // import "go.uber.org/zap/buffer"
2525

2626
import "strconv"
2727

0 commit comments

Comments
 (0)