From 286cec8d63f2888d5edc516e2e899fb1db88def7 Mon Sep 17 00:00:00 2001 From: Gabriel Dos Reis Date: Sun, 20 Sep 2015 10:07:16 -0700 Subject: [PATCH] Fix #35 'srandomly' was already fixed. 'botton' -> 'bottom'. --- CppCoreGuidelines.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CppCoreGuidelines.md b/CppCoreGuidelines.md index 02dcf2f..dc1236d 100644 --- a/CppCoreGuidelines.md +++ b/CppCoreGuidelines.md @@ -11793,7 +11793,7 @@ Here are some (very general) ideas: * The ideal is "just upgrade everything." That gives the most benefits for the shortest total time. In most circumstances, it is also impossible. * We could convert a code base module for module, but any rules that affects interfaces (especially ABIs), such as [use `array_view`](#SS-views), cannot be done on a per-module basis. -* We could convert code "botton up" starting with the rules we estimate will give the greatest benefits and/or the least trouble in a given code base. +* We could convert code "bottom up" starting with the rules we estimate will give the greatest benefits and/or the least trouble in a given code base. * We could start by focusing on the interfaces, e.g., make sure that no resources are lost and no pointer is misused. This would be a set of changes across the whole code base, but would most likely have huge benefits.