aboutsummaryrefslogtreecommitdiff
path: root/src/formatter/args.c
diff options
context:
space:
mode:
authorBruce Hill <bruce@bruce-hill.com>2025-08-26 00:45:56 -0400
committerBruce Hill <bruce@bruce-hill.com>2025-08-26 00:45:56 -0400
commitb5dee4f7ed1b8181df22a9824b7026a125ebbc53 (patch)
tree6e4aa12b2c17583a1495f1f1fd2f679766b5829a /src/formatter/args.c
parentf192834a6405d9a568782b637943588c6af7a8de (diff)
Actual type formatting
Diffstat (limited to 'src/formatter/args.c')
-rw-r--r--src/formatter/args.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/formatter/args.c b/src/formatter/args.c
index 2bd115cd..6bd07b28 100644
--- a/src/formatter/args.c
+++ b/src/formatter/args.c
@@ -12,7 +12,7 @@ OptionalText_t format_inline_arg(arg_ast_t *arg, Table_t comments) {
if (range_has_comment(arg->start, arg->end, comments)) return NONE_TEXT;
if (arg->name == NULL && arg->value) return must(format_inline_code(arg->value, comments));
Text_t code = Text$from_str(arg->name);
- if (arg->type) code = Texts(code, ":", must(format_inline_type(arg->type, comments)));
+ if (arg->type) code = Texts(code, ":", must(format_type(arg->type)));
if (arg->value) code = Texts(code, " = ", must(format_inline_code(arg->value, comments)));
return code;
}
@@ -22,7 +22,7 @@ Text_t format_arg(arg_ast_t *arg, Table_t comments, Text_t indent) {
if (inline_arg.length >= 0 && inline_arg.length <= MAX_WIDTH) return inline_arg;
if (arg->name == NULL && arg->value) return format_code(arg->value, comments, indent);
Text_t code = Text$from_str(arg->name);
- if (arg->type) code = Texts(code, ":", format_type(arg->type, comments, indent));
+ if (arg->type) code = Texts(code, ":", format_type(arg->type));
if (arg->value) code = Texts(code, " = ", format_code(arg->value, comments, indent));
return code;
}