From bdccf498497b32a27a16e6569b2d00980a28e319 Mon Sep 17 00:00:00 2001 From: rjhcnf Date: Thu, 3 Sep 2020 20:11:30 +0200 Subject: [PATCH] added minor clarification. (#1672) * added minor clarification. * Update CppCoreGuidelines.md Updated comment. * Update CppCoreGuidelines.md --- CppCoreGuidelines.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index f015e50..8240d48 100644 --- a/CppCoreGuidelines.md +++ b/CppCoreGuidelines.md @@ -1493,7 +1493,7 @@ In the following example, it is not clear from the interface what `time_to_blink ##### Example, good -`std::chrono::duration` types (C++11) helps making the unit of time duration explicit. +`std::chrono::duration` types helps making the unit of time duration explicit. void blink_led(milliseconds time_to_blink) // good -- the unit is explicit {