Skip to content

Fix typos in comments #119645

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
May 28, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion Tools/clinic/libclinic/dsl_parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ class ParamState(enum.IntEnum):
# Legal transitions: to LEFT_SQUARE_BEFORE or REQUIRED
START = 0

# Left square backets before required params.
# Left square brackets before required params.
LEFT_SQUARE_BEFORE = 1

# In a group, before required params.
Expand Down
2 changes: 1 addition & 1 deletion Tools/peg_generator/pegen/parser_generator.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@


class RuleCollectorVisitor(GrammarVisitor):
"""Visitor that invokes a provieded callmaker visitor with just the NamedItem nodes"""
"""Visitor that invokes a provided callmaker visitor with just the NamedItem nodes"""

def __init__(self, rules: Dict[str, Rule], callmakervisitor: GrammarVisitor) -> None:
self.rulses = rules
Expand Down
2 changes: 1 addition & 1 deletion Tools/wasm/wasi-env
Original file line number Diff line number Diff line change
Expand Up @@ -71,5 +71,5 @@ export CFLAGS LDFLAGS
export PKG_CONFIG_PATH PKG_CONFIG_LIBDIR PKG_CONFIG_SYSROOT_DIR
export PATH

# no exec, it makes arvg[0] path absolute.
# no exec, it makes argv[0] path absolute.
"$@"
Loading