Skip to content

Commit

Permalink
docs: very minor English wording fix in error message (#3900)
Browse files Browse the repository at this point in the history
  • Loading branch information
gabrielgrant authored Jan 3, 2024
1 parent 52562e8 commit 45e0c1b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/src/raw/http_util/body.rs
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ impl IncomingAsyncBody {
Ordering::Equal => Ok(()),
Ordering::Less => Err(Error::new(
ErrorKind::ContentIncomplete,
&format!("reader got too less data, expect: {expect}, actual: {actual}"),
&format!("reader got too little data, expect: {expect}, actual: {actual}"),
)
.set_temporary()),
Ordering::Greater => Err(Error::new(
Expand Down

0 comments on commit 45e0c1b

Please sign in to comment.