Skip to content

Commit 180ab2e

Browse files
committed
Use the term "macro expansion" instead of "pound literal".
Macros are a thing now, yo
1 parent 681fbc5 commit 180ab2e

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

gyb_syntax_support/DeclNodes.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -898,7 +898,7 @@
898898

899899
# e.g., "#embed("filename.txt")"
900900
Node('MacroExpansionDecl',
901-
name_for_diagnostics="pound literal declaration", kind='Decl',
901+
name_for_diagnostics="macro expansion", kind='Decl',
902902
traits=['FreestandingMacroExpansion'],
903903
children=[
904904
Child('PoundToken', kind='PoundToken',

gyb_syntax_support/ExprNodes.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -648,7 +648,7 @@
648648

649649
# e.g., "#embed("filename.txt")"
650650
Node('MacroExpansionExpr',
651-
name_for_diagnostics="pound literal expression", kind='Expr',
651+
name_for_diagnostics="macro expansion expression", kind='Expr',
652652
traits=['FreestandingMacroExpansion'],
653653
children=[
654654
Child('PoundToken', kind='PoundToken',

0 commit comments

Comments
 (0)