Skip to content
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

Two minor changes to overview section of documentation #304

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
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
3 changes: 3 additions & 0 deletions .idea/.gitignore

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions .idea/inspectionProfiles/profiles_settings.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 4 additions & 0 deletions .idea/misc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 8 additions & 0 deletions .idea/modules.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 12 additions & 0 deletions .idea/ply.iml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 6 additions & 0 deletions .idea/vcs.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions doc/ply.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ language syntax that has been specified in the form of a context free
grammar.

The two tools are meant to work together. Specifically, `lex.py`
provides an interface to produce tokens. `yacc.py` uses this retrieve
provides an interface to produce tokens. `yacc.py` uses this to retrieve
tokens and invoke grammar rules. The output of `yacc.py` is often an
Abstract Syntax Tree (AST). However, this is entirely up to the user. If
desired, `yacc.py` can also be used to implement simple one-pass
Expand All @@ -69,7 +69,7 @@ PLY relies on reflection (introspection) to build its lexers and
parsers. Unlike traditional lex/yacc which require a special input file
that is converted into a separate source file, the specifications given
to PLY *are* valid Python programs. This means that there are no extra
source files nor is there a special compiler construction step (e.g.,
source files, nor is there a special compiler construction step (e.g.,
running yacc to generate Python code for the compiler).

## Lex
Expand Down