From e93462e1d7470f76ff43f955ba7137470e77ebea Mon Sep 17 00:00:00 2001 From: Amir Livneh Date: Fri, 8 Mar 2019 09:15:50 -0500 Subject: [PATCH] Fix capitalization in CP.200 (#1373) --- CppCoreGuidelines.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index 2477e65..da9ab69 100644 --- a/CppCoreGuidelines.md +++ b/CppCoreGuidelines.md @@ -15106,7 +15106,7 @@ Unless you are writing the lowest level code manipulating hardware directly, con ##### Example -Usually C++ code receives `volatile` memory that is owned Elsewhere (hardware or another language): +Usually C++ code receives `volatile` memory that is owned elsewhere (hardware or another language): int volatile* vi = get_hardware_memory_location(); // note: we get a pointer to someone else's memory here