From: Jakub Staszak Date: Sun, 30 Sep 2012 20:42:13 +0000 (+0000) Subject: Fix && to && in Coding Standards. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=bfa43c042231decdf491acae5ed6ef89c196ba97;p=oota-llvm.git Fix && to && in Coding Standards. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@164920 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/docs/CodingStandards.rst b/docs/CodingStandards.rst index 455ffd5292a..71ddc59c5e5 100644 --- a/docs/CodingStandards.rst +++ b/docs/CodingStandards.rst @@ -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() && "getOperand() out of range!"); + assert(i < Operands.size() && "getOperand() out of range!"); return Operands[i]; }