aboutsummaryrefslogtreecommitdiff
path: root/src/typecheck.c
diff options
context:
space:
mode:
authorBruce Hill <bruce@bruce-hill.com>2025-08-23 19:53:44 -0400
committerBruce Hill <bruce@bruce-hill.com>2025-08-23 19:53:44 -0400
commit31249ee3c9626b5d89b1e3dd446885746370bf6a (patch)
treee74123c157cdb2de914ba8f1604598e3c71722a6 /src/typecheck.c
parent4edddb7a3bb861a2bcb61af16395f5c9231cdd97 (diff)
Don't align trailing comments
Diffstat (limited to 'src/typecheck.c')
-rw-r--r--src/typecheck.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/typecheck.c b/src/typecheck.c
index 680d3049..738fb235 100644
--- a/src/typecheck.c
+++ b/src/typecheck.c
@@ -1763,7 +1763,7 @@ PUREFUNC bool is_constant(env_t *env, ast_t *ast) {
}
case TextJoin: {
DeclareMatch(text, ast, TextJoin);
- if (!text->children) return true; // Empty string, OK
+ if (!text->children) return true; // Empty string, OK
if (text->children->next) return false; // Concatenation, not constant
return is_constant(env, text->children->ast);
}