From d4e2281a09258ef69a7b91e1a9c9d148b72afde2 Mon Sep 17 00:00:00 2001 From: cadenzasong Date: Sun, 26 Jul 2020 11:23:33 -0700 Subject: [PATCH] removed extra space in an example in CP.2 (#1654) --- CppCoreGuidelines.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index d8574c7..b9d08fd 100644 --- a/CppCoreGuidelines.md +++ b/CppCoreGuidelines.md @@ -14025,7 +14025,7 @@ Local static variables are a common source of data races. ##### Example, bad: - void f(fstream& fs, regex pattern) + void f(fstream& fs, regex pattern) { array buf; int sz = read_vec(fs, buf, max); // read from fs into buf