From 1d19362da35ed611188547a82e95bdd4a2e80ba7 Mon Sep 17 00:00:00 2001 From: jungle-boogie Date: Wed, 26 Aug 2015 14:21:57 -0700 Subject: [PATCH] update spelling --- c/input/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/c/input/README.md b/c/input/README.md index b3aa36513..b055634dc 100644 --- a/c/input/README.md +++ b/c/input/README.md @@ -3,7 +3,7 @@ These are readers for Miller file formats, stdio and mmap versions. The stdio and mmap record parsers are similar but not identical, due to inversion of processing order: getting an entire mallocked line and then splitting it by -separators in the former case, versus spltting while discovering end of line in +separators in the former case, versus splitting while discovering end of line in the latter case. The code duplication could be largely removed by having the mmap readers find end-of-lines, then split up the lines -- however that requires two passes through input strings and for performance I want just a