From 38ce19f738c01afafc41626c37bc307982c6b3e7 Mon Sep 17 00:00:00 2001 From: Victor Zverovich Date: Mon, 20 Jul 2020 07:29:57 -0700 Subject: [PATCH] Update README.rst --- README.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.rst b/README.rst index ddbd97ae..2fc617de 100644 --- a/README.rst +++ b/README.rst @@ -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}