We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 57ce60e commit ed2b81fCopy full SHA for ed2b81f
crates/noirc_frontend/src/hir/type_check/errors.rs
@@ -71,7 +71,7 @@ pub enum TypeCheckError {
71
IntegerBitWidth { bit_width_x: u32, bit_width_y: u32, span: Span },
72
#[error("{kind} cannot be used in an infix operation")]
73
InvalidInfixOp { kind: &'static str, span: Span },
74
- #[error("{kind} cannot be used in an unary operation")]
+ #[error("{kind} cannot be used in a unary operation")]
75
InvalidUnaryOp { kind: String, span: Span },
76
#[error("Bitwise operations are invalid on Field types. Try casting the operands to a sized integer type first.")]
77
InvalidBitwiseOperationOnField { span: Span },
0 commit comments