Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion ndc_lib/src/interpreter/num.rs
Original file line number Diff line number Diff line change
Expand Up @@ -599,7 +599,7 @@ implement_rounding!(round);
pub enum NumberToUsizeError {
#[error("cannot convert from {0} to usize")]
UnsupportedVariant(String),
#[error("failed to convert from int because of: '{0}'")]
#[error("expected non-negative integer for indexing")]
FromIntError(#[from] TryFromIntError),
#[error("failed to convert from bigint to number because of: '{0}'")]
FromBigIntError(#[from] TryFromBigIntError<BigInt>),
Expand Down