From 8221bd90164596c86c0ce51c0b6ee1c0f0c1cad2 Mon Sep 17 00:00:00 2001 From: Andreas Scherer Date: Sun, 18 Oct 2015 09:51:11 +0200 Subject: [PATCH] Fix missing backticks for std-code. --- CppCoreGuidelines.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index a4b1a23..f113522 100644 --- a/CppCoreGuidelines.md +++ b/CppCoreGuidelines.md @@ -1101,7 +1101,7 @@ In the following example, it is not clear from the interface what `time_to_blink ##### Example, good -std::chrono::duration types introduced in C++11 helps making the unit of time duration explicit. +`std::chrono::duration` types introduced in C++11 helps making the unit of time duration explicit. void blink_led(milliseconds time_to_blink) // good - the unit is explicit {