Skip to content

Commit 24551db

Browse files
committed
Fixing typo
1 parent 12e6611 commit 24551db

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ The simplest API to get started is `document::parse()`, which allocates a new pa
143143

144144
```c++
145145
auto [doc, error] = document::parse(string("[ 1, 2, 3 ]"));
146-
if (error) { cerr << "Error: " << error_meesage(error) << endl; exit(1); }
146+
if (error) { cerr << "Error: " << error_message(error) << endl; exit(1); }
147147
doc.print_json(cout);
148148
```
149149

0 commit comments

Comments
 (0)