Skip to content

Commit

Permalink
Tiny readme change
Browse files Browse the repository at this point in the history
  • Loading branch information
AndrewRayCode committed May 15, 2024
1 parent a89d452 commit d298958
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ GLSL 1.00 and 3.00 parser and preprocessor that compiles [back to
GLSL](src/parser/generator.ts). Both the parser and preprocessor can preserve
comments and whitespace.

The parser uses PEG grammar via the Peggy Javascript library. The PEG grammars
for both the preprocessor and main parser are in the source code [on
Github](https://github.com/ShaderFrog/glsl-parser).
The parser uses PEG grammar via the [Peggy](https://peggyjs.org) Javascript
library. The PEG grammars for both the preprocessor and main parser are in the
source code [on Github](https://github.com/ShaderFrog/glsl-parser).

See [the state of this library](#state-of-this-library) for limitations and
goals of this compiler.
Expand All @@ -16,16 +16,16 @@ goals of this compiler.

- [Installation](#installation)
- [Parsing](#parsing)
- [The program type](#the-program-type)
- [The program type](#the-program-type)
- [Scope](#scope)
- [Errors](#errors)
- [Preprocessing](#preprocessing)
- [Scope](#scope)
- [Errors](#errors)
- [Manipulating and Searching ASTs](#manipulating-and-searching-asts)
- [Visitors](#visitors)
- [Utility Functions](#utility-functions)
- [What are "parsing" and "preprocessing"?](#what-are-parsing-and-preprocessing)
- [State of this library](#state-of-this-library)
- [Limitations of the Parser and Preprocessor](#limitations-of-the-parser-and-preprocessor)
- [Limitations of the Parser and Preprocessor](#limitations-of-the-parser-and-preprocessor)
- [Local Development](#local-development)

# Usage
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"engines": {
"node": ">=16"
},
"version": "3.2.1",
"version": "3.2.2",
"type": "module",
"description": "A GLSL ES 1.0 and 3.0 parser and preprocessor that can preserve whitespace and comments",
"scripts": {
Expand Down

0 comments on commit d298958

Please sign in to comment.