Fix godoc comments

This commit is contained in:
Tobie Morgan Hitchcock 2018-02-06 17:05:26 +00:00
parent 36e7d8ed3a
commit 788d19c498

View file

@ -29,7 +29,7 @@ type UUID struct {
uuid.UUID
}
// NewV4 returns a new UUID (Version 4) using 16 random bytes or panics.
// New returns a new UUID (Version 4) using 16 random bytes or panics.
func New() *UUID {
return &UUID{uuid.NewV4()}
}