remove decding terminology from sizelimit error message

This commit is contained in:
Ty Overby 2017-10-13 17:29:44 -07:00
parent 6881aca80a
commit 94b3de8f3c
1 changed files with 1 additions and 1 deletions

View File

@ -63,7 +63,7 @@ impl StdError for ErrorKind {
ErrorKind::DeserializeAnyNotSupported => {
"bincode doesn't support serde::Deserializer::deserialize_any"
}
ErrorKind::SizeLimit => "the size limit for decoding has been reached",
ErrorKind::SizeLimit => "the size limit has been reached",
ErrorKind::Custom(ref msg) => msg,
}