emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[elpa] externals/parsec 72c1897 11/13: Merge pull request #6 from franbu


From: Stefan Monnier
Subject: [elpa] externals/parsec 72c1897 11/13: Merge pull request #6 from franburstall/franburstall-patch-1
Date: Fri, 26 Mar 2021 22:45:56 -0400 (EDT)

branch: externals/parsec
commit 72c1897a42b3b0b59505b3562e8f46c6354faec1
Merge: 212f848 47c9182
Author: Junpeng Qiu <qjpchmail@gmail.com>
Commit: GitHub <noreply@github.com>

    Merge pull request #6 from franburstall/franburstall-patch-1
    
    Fix two small typos
---
 README.org        | 2 +-
 examples/pjson.el | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/README.org b/README.org
index 53d08db..7bd7d3d 100644
--- a/README.org
+++ b/README.org
@@ -51,7 +51,7 @@ So we can
   | parsec-crlf            | crlf             | parse '\r\n'                   
                       |
   | parsec-eol             | eol              | parse newline or CRLF          
                       |
   | parsec-eof, parsec-eob | eof              | parse end of file              
                       |
-  | parsec-eol-or-eof      | *N/A*            | parse EOL or EOL               
                       |
+  | parsec-eol-or-eof      | *N/A*            | parse EOL or EOF               
                       |
   | parsec-re              | *N/A*            | parse using a regular 
expression                      |
   | parsec-one-of          | oneOf            | parse one of the characters    
                       |
   | parsec-none-of         | noneOf           | parse any character other than 
the supplied ones      |
diff --git a/examples/pjson.el b/examples/pjson.el
index f34f4d9..989a19e 100644
--- a/examples/pjson.el
+++ b/examples/pjson.el
@@ -46,7 +46,7 @@
 (defun pjson-value ()
   (parsec-and
     (pjson-spaces)
-    (pjson-jvaule)))
+    (pjson-jvalue)))
 
 (defun pjson-jvalue ()
   (parsec-or (pjson-null)



reply via email to

[Prev in Thread] Current Thread [Next in Thread]