aboutsummaryrefslogtreecommitdiff
path: root/ast.c
diff options
context:
space:
mode:
authorBruce Hill <bruce@bruce-hill.com>2024-03-19 23:29:32 -0400
committerBruce Hill <bruce@bruce-hill.com>2024-03-19 23:29:32 -0400
commita47bd2d569e24b74bbb925b934bc835b4eea4de9 (patch)
treee692a68f65b428aef889b9992473b0a7c1bc9314 /ast.c
parent80ea0f85079eaac027b930b7d54df46e2039e7c3 (diff)
Improvements to module imports
Diffstat (limited to 'ast.c')
-rw-r--r--ast.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ast.c b/ast.c
index 59ba8db2..dd227a58 100644
--- a/ast.c
+++ b/ast.c
@@ -141,7 +141,7 @@ CORD ast_to_cord(ast_t *ast)
T(Index, "(indexed=%r, index=%r)", ast_to_cord(data.indexed), ast_to_cord(data.index))
T(FieldAccess, "(fielded=%r, field=%s)", ast_to_cord(data.fielded), data.field)
T(DocTest, "(expr=%r, output=%r)", ast_to_cord(data.expr), Text__quoted(data.output, true))
- T(Use, "(%r)", Text__quoted(data.path, true))
+ T(Use, "(%r)", Text__quoted(data.raw_path, true))
T(LinkerDirective, "(%r)", Text__quoted(data.directive, true))
T(InlineCCode, "(%r)", Text__quoted(data.code, true))
#undef T