diff options
| author | Jeroen van Rijn <Kelimion@users.noreply.github.com> | 2024-08-21 14:18:12 +0200 |
|---|---|---|
| committer | Jeroen van Rijn <Kelimion@users.noreply.github.com> | 2024-08-21 14:18:12 +0200 |
| commit | 1bcc0742234d5cf1066e73384bd618ddab792e86 (patch) | |
| tree | ba75d7a4803793a640ec8c9368bba7d82b7d93c2 /src | |
| parent | 6b4b0cea5dd0b451a283f919e36fa6c060f2f236 (diff) | |
dash
Diffstat (limited to 'src')
| -rw-r--r-- | src/check_expr.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/check_expr.cpp b/src/check_expr.cpp index 2540230df..95b0872ac 100644 --- a/src/check_expr.cpp +++ b/src/check_expr.cpp @@ -1175,13 +1175,13 @@ gb_internal void check_assignment(CheckerContext *c, Operand *operand, Type *typ case Addressing_Type: if (is_type_polymorphic(operand->type)) { error(operand->expr, - "Cannot assign '%s' — a polymorphic type — to %.*s%.*s", + "Cannot assign '%s' - a polymorphic type - to %.*s%.*s", op_type_str, LIT(article), LIT(context_name)); } else { error(operand->expr, - "Cannot assign '%s' — a type — to %.*s%.*s", + "Cannot assign '%s' - a type - to %.*s%.*s", op_type_str, LIT(article), LIT(context_name)); |