diff options
| author | Jeroen van Rijn <Kelimion@users.noreply.github.com> | 2024-06-10 10:25:09 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-06-10 10:25:09 +0200 |
| commit | d3ae70264e1567c7a21ac978da702ef41fcdc1db (patch) | |
| tree | cd44c3a685292da0d84d152c688bc776de431369 /src | |
| parent | c8b376f07f3212bb4c5228591485237b93553f0f (diff) | |
| parent | 45d1328a85818fc77f2aacc77fa6ce0cfbce3473 (diff) | |
Merge pull request #3720 from Feoramund/fix-force-inline-err-typo
Fix typo in a `#force_inline` error message
Diffstat (limited to 'src')
| -rw-r--r-- | src/check_expr.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/check_expr.cpp b/src/check_expr.cpp index 13d0e277d..641f70566 100644 --- a/src/check_expr.cpp +++ b/src/check_expr.cpp @@ -7672,7 +7672,7 @@ gb_internal ExprKind check_call_expr(CheckerContext *c, Operand *operand, Ast *c if (decl->proc_lit) { ast_node(pl, ProcLit, decl->proc_lit); if (pl->inlining == ProcInlining_no_inline) { - error(call, "'#force_inline' cannot be applied to a procedure that has be marked as '#force_no_inline'"); + error(call, "'#force_inline' cannot be applied to a procedure that has been marked as '#force_no_inline'"); } } } |