1
0
mirror of https://github.com/nlohmann/json synced 2024-11-25 21:30:06 +00:00

✏️ fix typo

This commit is contained in:
Niels Lohmann 2022-01-05 21:18:27 +01:00
parent b785783440
commit 4b6220acf2
No known key found for this signature in database
GPG Key ID: 7F3CEA63AE251B69

View File

@ -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"