From 296777546c452ae4c9f25b9c46fabb8d2606de49 Mon Sep 17 00:00:00 2001 From: Kushal Kumaran Date: Tue, 18 Jun 2019 13:53:21 -0700 Subject: [PATCH] fix typo: padding_string (#192) --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 5ae63ace4..5487da01b 100644 --- a/README.md +++ b/README.md @@ -88,7 +88,7 @@ of memory allocation with each new JSON document: /... const char * filename = ... // -padding_string p = get_corpus(filename); +padded_string p = get_corpus(filename); ParsedJson pj = build_parsed_json(p); // do the parsing if( ! pj.isValid() ) { // something went wrong