Skip to content

Commit

Permalink
Fix typo in error message
Browse files Browse the repository at this point in the history
  • Loading branch information
sepetrov committed Nov 28, 2018
1 parent 7077aa6 commit ef3a282
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 ef3a282

Please sign in to comment.