Skip to content

Commit

Permalink
fix: doc change suggestions
Browse files Browse the repository at this point in the history
  • Loading branch information
mykeels committed Jan 7, 2019
1 parent 50d3167 commit 934f8bc
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ This will retrieve the next characters from the InputStream until a character is
### - readNext()

This makes sure to skip whitespaces and comments, and depending on the nature of a character read, it calls and returns any of other methods such as:
This makes sure to skip whitespaces and comments, and depending on the nature of a character read, it calls and returns the value of other methods such as:

### - readString()

Expand Down Expand Up @@ -129,7 +129,7 @@ Each Parser Node instance has a `getNode()` method, which contains logic for ens
Here's an example of the grammar for `jeki`:

```txt
jeki<whitespace><identifier><whitespace>=<expression>;
jeki<whitespace><identifier>=<expression>;
```

such as
Expand Down
2 changes: 1 addition & 1 deletion src/parsers/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ Available Parser Nodes are:
Here's an example of the grammar for `fun`:

```txt
fun<whitespace>(<jeki-expression>;<whitespace><expression>;<whitespace><jeki-expression>) {
fun<whitespace>(<jeki-expression>;<expression>;<jeki-expression>) {
<body>
}
```
Expand Down

0 comments on commit 934f8bc

Please sign in to comment.