Skip to content

Commit

Permalink
Merge branch 'main' into ast-refactor
Browse files Browse the repository at this point in the history
  • Loading branch information
kenarab committed Jun 5, 2024
2 parents d126154 + 36a3006 commit 52250db
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/concrete_check/src/linearity_check/errors.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ use thiserror::Error;
pub enum LinearityError {
#[error("Variable {variable} not consumed")]
NotConsumed { variable: String },
#[error("Borrowed mutably and used for Variable {variable}")]
#[error("Borrowed mutably and used for variable {variable}")]
BorrowedMutUsed { variable: String },
#[error("Variable {variable} borrowed mutably more than once")]
BorrowedMutMoreThanOnce { variable: String },
Expand Down

0 comments on commit 52250db

Please sign in to comment.