Skip to content

Commit

Permalink
Merge pull request #64 from sepetrov/fix-error-message-typo
Browse files Browse the repository at this point in the history
Fix typo in error message
  • Loading branch information
zerkms authored Nov 28, 2018
2 parents 7077aa6 + ef3a282 commit 9f278e1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion codec.go
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,7 @@ func (u *UUID) decodePlain(t []byte) error {
case 36:
return u.decodeCanonical(t)
default:
return fmt.Errorf("uuid: incorrrect UUID length: %s", t)
return fmt.Errorf("uuid: incorrect UUID length: %s", t)
}
}

Expand Down

0 comments on commit 9f278e1

Please sign in to comment.