Update docs to use std::string. (#184)

This commit is contained in:
Arthur Sonzogni
2021-08-09 22:51:48 +02:00
committed by GitHub
parent 9a54528bca
commit 4450cca31a
2 changed files with 27 additions and 27 deletions

View File

@@ -52,9 +52,9 @@ A simple C++ library for terminal based user interface.
~~~cpp
vbox({
hbox({
text(L"left") | border,
text(L"middle") | border | flex,
text(L"right") | border,
text("left") | border,
text("middle") | border | flex,
text("right") | border,
}),
gauge(0.5) | border,
});