aboutsummaryrefslogtreecommitdiff
path: root/pycparser
diff options
context:
space:
mode:
authorEli Bendersky <eliben@gmail.com>2013-09-25 06:24:48 -0700
committerEli Bendersky <eliben@gmail.com>2013-09-25 06:24:48 -0700
commit3ea82c255bdf765b11abc79138eb02a432cf30e1 (patch)
tree7e051474ea6647823cefefa4619eaff33b2c4114 /pycparser
parent50395a985fc03b977795da2c9a39e82ad58ae1c8 (diff)
downloadpycparser-3ea82c255bdf765b11abc79138eb02a432cf30e1.tar.gz
moar cleanups
Diffstat (limited to 'pycparser')
-rw-r--r--pycparser/_c_ast.cfg12
1 files changed, 6 insertions, 6 deletions
diff --git a/pycparser/_c_ast.cfg b/pycparser/_c_ast.cfg
index a8e33ff..2596de6 100644
--- a/pycparser/_c_ast.cfg
+++ b/pycparser/_c_ast.cfg
@@ -2,7 +2,7 @@
# pycparser: _c_ast.cfg
#
# Defines the AST Node classes used in pycparser.
-#
+#
# Each entry is a Node sub-class name, listing the attributes
# and child nodes of the class:
# <name>* - a child node
@@ -63,7 +63,7 @@ Default: [stmts**]
DoWhile: [cond*, stmt*]
-# Represents the ellipsis (...) parameter in a function
+# Represents the ellipsis (...) parameter in a function
# declaration
#
EllipsisParam: []
@@ -90,11 +90,11 @@ EnumeratorList: [enumerators**]
#
ExprList: [exprs**]
-# This is the top of the AST, representing a single C file (a
-# translation unit in K&R jargon). It contains a list of
+# This is the top of the AST, representing a single C file (a
+# translation unit in K&R jargon). It contains a list of
# "external-declaration"s, which is either declarations (Decl),
# Typedef or function definitions (FuncDef).
-#
+#
FileAST: [ext**]
# for (init; cond; next) stmt
@@ -111,7 +111,7 @@ FuncCall: [name*, args*]
FuncDecl: [args*, type*]
# Function definition: a declarator for the function name and
-# a body, which is a compound statement.
+# a body, which is a compound statement.
# There's an optional list of parameter declarations for old
# K&R-style definitions
#