From 0d3d8fa83ec4d29e9830a4e32f48e2c443e297b6 Mon Sep 17 00:00:00 2001 From: ado Date: Wed, 28 Feb 2024 00:04:59 +0100 Subject: [PATCH] [skip ci] Update README --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index d4c6617..0334dd1 100644 --- a/README.md +++ b/README.md @@ -212,7 +212,7 @@ This works with the iteration loop too. *Note, the order in which the members of the tied method are returned must match the order of the elements in the CSV*. ## Buffer mode -The parser also works with buffers containing CSV data instead of files. To parse buffer data with the parser simply create it by passing it the buffer as a **`const char*`** which represents the buffer, and its size. The initial example using a buffer instead of a file would look like this: +The parser also works with buffers containing CSV data instead of files. To parse buffer data with the parser simply create it by passing it the buffer as a **`const char*`** and its size. The initial example using a buffer instead of a file would look like this: ```cpp std::string buffer = "James Bailey,65,2.5\nBrian S. Wolfe,40,1.9\n";