diff --git a/src/internal.rs b/src/internal.rs index a09830835..e5896799d 100644 --- a/src/internal.rs +++ b/src/internal.rs @@ -39,7 +39,7 @@ impl Finish for IResult { Ok(res) => Ok(res), Err(Err::Error(e)) | Err(Err::Failure(e)) => Err(e), Err(Err::Incomplete(_)) => { - panic!("Cannot call `finish()` on `Err(Err::Incomplete(_))`: this result means that the parser does not have enough data to decide, you should gather more data and try to reapply the parser instead") + panic!("Cannot call `finish()` on `Err(Err::Incomplete(_))`: this result means that the parser does not have enough data to decide, you should gather more data and try to reapply the parser instead") } } }