Skip to content

Commit

Permalink
Fix array dimension in example
Browse files Browse the repository at this point in the history
  • Loading branch information
aluaces authored Oct 11, 2024
1 parent 9f8a721 commit 5682d05
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -367,7 +367,7 @@ writer << vector<string>({ "A", "B", "C" })
<< deque<string>({ "I'm", "too", "tired" })
<< list<string>({ "to", "write", "documentation." });

writer << array<string, 2>({ "The quick brown", "fox", "jumps over the lazy dog" });
writer << array<string, 3>({ "The quick brown", "fox", "jumps over the lazy dog" });
writer << make_tuple(1, 2.0, "Three");
...
```
Expand Down

0 comments on commit 5682d05

Please sign in to comment.