Update README.rst

This commit is contained in:
Victor Zverovich 2020-07-20 07:29:57 -07:00 committed by GitHub
parent d11849bc0b
commit 38ce19f738
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -102,7 +102,7 @@ Print chrono durations:
fmt::print("strftime-like format: {:%H:%M:%S}\n", 3h + 15min + 30s);
}
Output::
* Output::
Default format: 42s 100ms
strftime-like format: 03:15:30
@ -119,7 +119,7 @@ Print a container:
fmt::print("{}\n", v);
}
Output::
* Output::
{1, 2, 3}