Remove a redundant character from the range

This commit is contained in:
Wei Hu 2020-10-20 23:53:12 -07:00 committed by GitHub
parent f38f42f17d
commit febad3e30d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -20,7 +20,7 @@ struct Color {
//
// Note, that implementation for tuple and array will be checked at compile-time,
// but slice implementation need check slice length!
// Also note, that chunk of correct rgb color must be integer in range 0..=255.
// Also note, that chunk of correct rgb color must be integer in range 0..255.
// Tuple implementation
impl TryFrom<(i16, i16, i16)> for Color {