From 11e92eb4c5a78e8702d9e11301ba602949de275b Mon Sep 17 00:00:00 2001 From: Abigail Date: Sat, 3 Jun 2017 07:47:06 +0100 Subject: [PATCH] Fix Markdown rendering failure Use of without backticks causes the Markdown render to fail from this point onwards on GitHub pages. --- CppCoreGuidelines.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index 472f290..fdf213a 100644 --- a/CppCoreGuidelines.md +++ b/CppCoreGuidelines.md @@ -18089,7 +18089,7 @@ Avoid accidentally becoming dependent on implementation details and logically se } } - exposes the definition of `std::string` ("why?" makes for a fun trivia question), +`` exposes the definition of `std::string` ("why?" makes for a fun trivia question), but it is not required to do so by transitively including the entire `` header, resulting in the popular beginner question "why doesn't `getline(cin,s);` work?" or even an occasional "`string`s cannot be compared with `==`).