From 9ae62b4cfca6293d4a83cc0242c54e5eac1cf47b Mon Sep 17 00:00:00 2001 From: EuAndreh Date: Wed, 15 Jan 2025 04:43:38 -0300 Subject: Makefile: Simplify variable names --- src/guuid.go | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'src/guuid.go') 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") ) -- cgit v1.2.3