1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-07-26 13:21:07 +03:00

Fix all the remaining misspellings -- BZ 25337

This commit is contained in:
Paul Pluzhnikov
2023-05-20 13:37:47 +00:00
parent 5013f6fc6c
commit 7f0d9e61f4
206 changed files with 313 additions and 313 deletions

View File

@ -222,7 +222,7 @@ class MacroDefinition(collections.namedtuple('MacroDefinition',
args is None for a macro that is not function-like. Otherwise, it
is a tuple that contains the macro argument name tokens.
body is a tuple that contains the tokens that constitue the body
body is a tuple that contains the tokens that constitute the body
of the macro definition (excluding whitespace).
error is None if no error was detected, or otherwise a problem
@ -242,7 +242,7 @@ class MacroDefinition(collections.namedtuple('MacroDefinition',
@property
def line(self):
"""Return the line number of the macro defintion."""
"""Return the line number of the macro definition."""
return self.name_token.line
@property
@ -387,7 +387,7 @@ def macro_eval(macro_defs, reporter):
evaluated = OrderedDict()
# String to macro definitions during evaluation. Nice error
# reporting relies on determinstic iteration order.
# reporting relies on deterministic iteration order.
stack = OrderedDict()
def eval_token(current, token):