diff options
Diffstat (limited to 'src/guuid.go')
-rw-r--r-- | src/guuid.go | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/guuid.go b/src/guuid.go index e4f5f14..22d783a 100644 --- a/src/guuid.go +++ b/src/guuid.go @@ -20,7 +20,9 @@ var ( dashIndexes = []int{ 8, 13, 18, 23 } randomReader = rand.Reader - ErrBadLength = errors.New("guuid: str isn't of the correct length") + ErrBadLength = errors.New( + "guuid: str isn't of the correct length", + ) ErrBadDashCount = errors.New("guuid: Bad count of dashes in string") ErrBadDashPosition = errors.New("guuid: Bad char in string") ) |