From 4b6220acf2b6780350df36df12afc18eeb24a50c Mon Sep 17 00:00:00 2001 From: Niels Lohmann Date: Wed, 5 Jan 2022 21:18:27 +0100 Subject: [PATCH] :pencil2: fix typo --- doc/mkdocs/docs/features/parsing/json_lines.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/mkdocs/docs/features/parsing/json_lines.md b/doc/mkdocs/docs/features/parsing/json_lines.md index 9542cb0c5..69c2163b7 100644 --- a/doc/mkdocs/docs/features/parsing/json_lines.md +++ b/doc/mkdocs/docs/features/parsing/json_lines.md @@ -17,7 +17,7 @@ The [JSON Lines](https://jsonlines.org) format is a text format of newline-delim ``` JSON Lines input with more than one value is treated as invalid JSON by the [`parse`](../../api/basic_json/parse.md) or -[`accept`](../../api/basic_json/accept.md) functions. The process it line by line, functions like +[`accept`](../../api/basic_json/accept.md) functions. To process it line by line, functions like [`std::getline`](https://en.cppreference.com/w/cpp/string/basic_string/getline) can be used: !!! example "Example: Parse JSON Text input line by line"