Fix && to && in Coding Standards.
authorJakub Staszak <kubastaszak@gmail.com>
Sun, 30 Sep 2012 20:42:13 +0000 (20:42 +0000)
committerJakub Staszak <kubastaszak@gmail.com>
Sun, 30 Sep 2012 20:42:13 +0000 (20:42 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@164920 91177308-0d34-0410-b5e6-96231b3b80d8

docs/CodingStandards.rst

index 455ffd5292a756138ab78b86f083ccd4f44c84df..71ddc59c5e53ba5fc095ceb73d0c7245d954759a 100644 (file)
@@ -714,7 +714,7 @@ enforced, and hopefully what to do about it.  Here is one complete example:
 .. code-block:: c++
 
   inline Value *getOperand(unsigned i) { 
-    assert(i < Operands.size() &amp;&amp; "getOperand() out of range!");
+    assert(i < Operands.size() && "getOperand() out of range!");
     return Operands[i]; 
   }