Skip to content

Commit

Permalink
Merge branch 'master' into issues/157
Browse files Browse the repository at this point in the history
  • Loading branch information
Brian Mock authored Jun 6, 2017
2 parents 354a16d + 81fa365 commit 9e6bbb8
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
*.js text eol=lf
2 changes: 1 addition & 1 deletion API.md
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ This is an alias for `Parsimmon.regexp`.

## Parsimmon.notFollowedBy(parser)

Parses using `parser`, but does not consume what it parses. Yields an empty string if the parser *does not match* the input. Otherwise it fails.
Parses using `parser`, but does not consume what it parses. Yields `null` if the parser *does not match* the input. Otherwise it fails.

## Parsimmon.lookahead(parser)

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "parsimmon",
"version": "1.2.0",
"version": "1.3.0",
"description": "A monadic LL(infinity) parser combinator library",
"keywords": [
"parsing",
Expand Down

0 comments on commit 9e6bbb8

Please sign in to comment.