We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2b0fce2 commit 3bba386Copy full SHA for 3bba386
1 file changed
compiler/noirc_evaluator/src/errors.rs
@@ -26,7 +26,7 @@ pub enum RuntimeError {
26
},
27
#[error(transparent)]
28
InternalError(#[from] InternalError),
29
- #[error("Index out of bounds, array has size {index:?}, but index was {array_size:?}")]
+ #[error("Index out of bounds, array has size {array_size}, but index was {index}")]
30
IndexOutOfBounds { index: usize, array_size: usize, call_stack: CallStack },
31
#[error("Range constraint of {num_bits} bits is too large for the Field size")]
32
InvalidRangeConstraint { num_bits: u32, call_stack: CallStack },
0 commit comments