aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBruce Hill <bruce@bruce-hill.com>2025-08-30 15:54:15 -0400
committerBruce Hill <bruce@bruce-hill.com>2025-08-30 15:54:15 -0400
commitf38fa3389c881ef8341011c05d7b2435686068e7 (patch)
tree9b61626897fd941c14320d726558ab41d1fc7d1e
parent688b0ae7bd433c4d7daf96505581f90e719f033c (diff)
Arg indentation tweak
-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 34d234df..9809645f 100644
--- a/src/formatter/args.c
+++ b/src/formatter/args.c
@@ -49,8 +49,8 @@ Text_t format_args(arg_ast_t *args, Table_t comments, Text_t indent) {
if (args->name && args->next && args->type == args->next->type && args->value == args->next->value) {
code = Texts(code, Text$from_str(args->name), ",");
} else {
- code = Texts(code, "\n", indent, single_indent,
- format_arg(args, comments, Texts(indent, single_indent, single_indent)), ",");
+ code =
+ Texts(code, "\n", indent, single_indent, format_arg(args, comments, Texts(indent, single_indent)), ",");
}
}
return code;