summaryrefslogtreecommitdiff
path: root/parse.c
diff options
context:
space:
mode:
Diffstat (limited to 'parse.c')
-rw-r--r--parse.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/parse.c b/parse.c
index 16ceb20..85479d1 100644
--- a/parse.c
+++ b/parse.c
@@ -2667,7 +2667,7 @@ static void print_block_location(Block *b) {
static void fprint_fn_expr(FILE *out, FnExpr *f) {
if (f->flags & FN_EXPR_FOREIGN) {
- fprintf(out, "#foreign fn;");
+ fprintf(out, "#foreign fn");
} else {
fprintf(out, "fn (");
arr_foreach(f->params, Declaration, decl) {