From c0264f38310fca6fccd5c3542b4ff83a7f549151 Mon Sep 17 00:00:00 2001 From: Jason Mercer Date: Tue, 3 Apr 2018 15:01:57 -0400 Subject: [PATCH] fixed scale factor for millimeters (#1182) --- CppCoreGuidelines.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index a33c79c..cc1ccd3 100644 --- a/CppCoreGuidelines.md +++ b/CppCoreGuidelines.md @@ -4221,7 +4221,7 @@ For example: // ... private: double magnitude; - double unit; // 1 is meters, 1000 is kilometers, 0.0001 is millimeters, etc. + double unit; // 1 is meters, 1000 is kilometers, 0.001 is millimeters, etc. }; ##### Note