Use consistent diagnostic messages in augmented assignment inference (#13986)

This commit is contained in:
Charlie Marsh 2024-10-29 22:57:53 -04:00 committed by GitHub
parent c6b82151dd
commit 1607d88c22
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1438,7 +1438,7 @@ impl<'db> TypeInferenceBuilder<'db> {
assignment.into(),
"unsupported-operator",
format_args!(
"Operator `{op}=` is unsupported for type `{}` with type `{}`",
"Operator `{op}=` is unsupported between objects of type `{}` and `{}`",
target_type.display(self.db),
value_type.display(self.db)
),
@ -1457,7 +1457,7 @@ impl<'db> TypeInferenceBuilder<'db> {
assignment.into(),
"unsupported-operator",
format_args!(
"Operator `{op}` is unsupported between objects of type `{}` and `{}`",
"Operator `{op}=` is unsupported between objects of type `{}` and `{}`",
left_ty.display(self.db),
right_ty.display(self.db)
),