From bfa43c042231decdf491acae5ed6ef89c196ba97 Mon Sep 17 00:00:00 2001 From: Jakub Staszak Date: Sun, 30 Sep 2012 20:42:13 +0000 Subject: Fix && to && in Coding Standards. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@164920 91177308-0d34-0410-b5e6-96231b3b80d8 --- docs/CodingStandards.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'docs/CodingStandards.rst') diff --git a/docs/CodingStandards.rst b/docs/CodingStandards.rst index 455ffd5292..71ddc59c5e 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]; } -- cgit v1.2.3