Skip to content

Commit

Permalink
Add missing import comment (uber-go#574)
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
akshayjshah committed Apr 11, 2018
1 parent 2bb0e73 commit 0a8ced1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion buffer/buffer.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
// Package buffer provides a thin wrapper around a byte slice. Unlike the
// standard library's bytes.Buffer, it supports a portion of the strconv
// package's zero-allocation formatters.
package buffer
package buffer // import "go.uber.org/zap/buffer"

import "strconv"

Expand Down

0 comments on commit 0a8ced1

Please sign in to comment.