summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--docs/CodingStandards.rst2
1 files changed, 1 insertions, 1 deletions
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() &amp;&amp; "getOperand() out of range!");
+ assert(i < Operands.size() && "getOperand() out of range!");
return Operands[i];
}