Less verbose errors from internal dice parsing errors.

This commit is contained in:
projectmoon 2020-11-04 20:14:14 +00:00 committed by ProjectMoon
parent 39e6eb9b46
commit d2642d1fd3
1 changed files with 1 additions and 1 deletions

View File

@ -17,7 +17,7 @@ pub enum DiceParsingError {
#[error("extraneous input detected")]
UnconsumedInput,
#[error("parser error: {0}")]
#[error("{0}")]
InternalParseError(#[from] combine::error::StringStreamError),
}