From 9c35a583272982a817cd6f59e9586e4e84461be3 Mon Sep 17 00:00:00 2001 From: Gabi Melman Date: Sun, 15 Feb 2015 23:44:47 +0200 Subject: [PATCH] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 81b5feeb..e72930b0 100644 --- a/README.md +++ b/README.md @@ -73,7 +73,7 @@ int main(int, char* []) console->info("An info message example {}..", 1); console->info() << "Streams are supported too " << 1; - //Formatting examples + //Formatting examples console->info("Easy padding in numbers like {:08d}", 12); console->info("Support for int: {0:d}; hex: {0:x}; oct: {0:o}; bin: {0:b}", 42); console->info("Support for floats {:03.2f}", 1.23456);