From 31016ad113009059f6f2a2edb112f1e8a3372e81 Mon Sep 17 00:00:00 2001 From: timp3289 Date: Wed, 11 Nov 2015 21:30:29 +1100 Subject: [PATCH] Fixed typo --- CppCoreGuidelines.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index cb26077..b3402fa 100644 --- a/CppCoreGuidelines.md +++ b/CppCoreGuidelines.md @@ -11998,7 +11998,7 @@ This slowdown can be significant compared to `printf`-style output. ##### Note -For `cin`/`cout` (and equivalent) interaction, there is no reason to flush; that's donr automatically. +For `cin`/`cout` (and equivalent) interaction, there is no reason to flush; that's done automatically. For writing to a file, there is rarely a need to `flush`. ##### Note