home: hub: minipeg

Download patch

ref: 63f3a973ef06a5ce4f7a93cc6c99bb6eaab08e11
parent: bbecfce9e715cfb2ee7e1ddc3f34d4b5ca55d946
author: Andrew Chambers <ac@acha.ninja>
date: Thu Apr 7 21:51:29 CDT 2022

Tweak readme.

--- a/README.md
+++ b/README.md
@@ -1,7 +1,6 @@
 # Minipeg
 
-`minipeg` is a tool for generating recursive-descent parsers: programs that perform pattern matching on
-text. 
+`minipeg` is a tool for generating recursive-descent parsers for use from C.
 
 Unlike `lex` and `yacc`, `minipeg` supports unlimited backtracking, provide ordered choice as a means for disambiguation, and can combine scanning (lexical analysis) and parsing (syntactic analysis) into a single activity.