Skip to content

Commit

Permalink
Fix error message
Browse files Browse the repository at this point in the history
  • Loading branch information
dmoverton committed Mar 19, 2024
1 parent b07dc12 commit df45726
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/cli/src/introspection/type_unification.rs
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ impl Display for TypeUnificationError {
write!(f, "Object type mismatch {} {}", object_a, object_b)
}
Self::TypeKind(type_a, type_b) => {
write!(f, "Object type mismatch {:?} {:?}", type_a, type_b)
write!(f, "Type mismatch {:?} {:?}", type_a, type_b)
}
}
}
Expand Down

0 comments on commit df45726

Please sign in to comment.