mirror of
https://github.com/simdjson/simdjson
synced 2026-06-08 17:27:07 +00:00
Fixing typo
This commit is contained in:
@@ -143,7 +143,7 @@ The simplest API to get started is `document::parse()`, which allocates a new pa
|
||||
|
||||
```c++
|
||||
auto [doc, error] = document::parse(string("[ 1, 2, 3 ]"));
|
||||
if (error) { cerr << "Error: " << error_meesage(error) << endl; exit(1); }
|
||||
if (error) { cerr << "Error: " << error_message(error) << endl; exit(1); }
|
||||
doc.print_json(cout);
|
||||
```
|
||||
|
||||
|
||||
Reference in New Issue
Block a user