From b290556127fd6e1a66c68da62fa78f3c19e61210 Mon Sep 17 00:00:00 2001 From: galik Date: Wed, 13 Jul 2016 19:15:04 +0100 Subject: [PATCH] Fix typos in SL.50 --- CppCoreGuidelines.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index 97a616c..bc87e12 100644 --- a/CppCoreGuidelines.md +++ b/CppCoreGuidelines.md @@ -14750,7 +14750,7 @@ If you have a good reason to use another container, use that instead. For exampl ### Reason -The `endl` manipulator is mostly equivalent to `'\\n'` and `"\\n"`; +The `endl` manipulator is mostly equivalent to `'\n'` and `"\n"`; as most commonly used it simply slows down output by doing redundant `flush()`s. This slowdown can be significant compared to `printf`-style output.