From a44f87f2e778a6d1adad56f5c44161b42aeb0b3a Mon Sep 17 00:00:00 2001
From: Chris Lattner
Date: Tue, 30 Jun 2009 06:27:54 +0000
Subject: [PATCH] got confused again
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@74514 91177308-0d34-0410-b5e6-96231b3b80d8
---
docs/CodingStandards.html | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/docs/CodingStandards.html b/docs/CodingStandards.html
index ff29b39d6b7..dbe95a8d588 100644
--- a/docs/CodingStandards.html
+++ b/docs/CodingStandards.html
@@ -709,7 +709,7 @@ at the start of the loop. In this case, the cost is probably minor: a few extra
loads every time through the loop. However, if the base expression is more
complex, then the cost can rise quickly. I've seen loops where the end
expression was actually something like: "SomeMap[x]->end()" and map
-lookups really aren't cheap. By writing it in the first form consistently, you
+lookups really aren't cheap. By writing it in the second form consistently, you
eliminate the issue entirely and don't even have to think about it.
The second (even bigger) issue is that writing the loop in the first form
--
2.34.1