From 3f23d5e85455867f0af9f4e3cd5a86a70381d26e Mon Sep 17 00:00:00 2001 From: Daniel Holden Date: Tue, 9 Oct 2018 21:00:55 -0400 Subject: [PATCH] Update README.md typo --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index d251f26..b7cfb89 100644 --- a/README.md +++ b/README.md @@ -481,7 +481,7 @@ mpc_delete(ident); Notice that previous parsers are used as input to new parsers we construct from the combinators. Note that only the final parser `ident` must be deleted. When we input a parser into a combinator we should consider it to be part of the output of that combinator. -Because of this we shouldn't create a parser and input it into multiple places, or it will be doubly feed. +Because of this we shouldn't create a parser and input it into multiple places, or it will be doubly freed. Regex Method