Skip to content

Commit 4d4319c

Browse files
authored
Fix array dimension in example (#246)
1 parent 0275092 commit 4d4319c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -367,7 +367,7 @@ writer << vector<string>({ "A", "B", "C" })
367367
<< deque<string>({ "I'm", "too", "tired" })
368368
<< list<string>({ "to", "write", "documentation." });
369369

370-
writer << array<string, 2>({ "The quick brown", "fox", "jumps over the lazy dog" });
370+
writer << array<string, 3>({ "The quick brown", "fox", "jumps over the lazy dog" });
371371
writer << make_tuple(1, 2.0, "Three");
372372
...
373373
```

0 commit comments

Comments
 (0)