diff options
| author | Jakub Staszak <kubastaszak@gmail.com> | 2012-09-30 20:42:13 +0000 |
|---|---|---|
| committer | Jakub Staszak <kubastaszak@gmail.com> | 2012-09-30 20:42:13 +0000 |
| commit | 2e747e35965f2aaf204dccbf65d6d0e39fa22249 (patch) | |
| tree | 5b73c33e41ca2cf8cce9a1d25ab5089b1b98b618 | |
| parent | 4f1c8caf2f923d0e3f389c3472c9e22d44f7b240 (diff) | |
| download | bcm5719-llvm-2e747e35965f2aaf204dccbf65d6d0e39fa22249.tar.gz bcm5719-llvm-2e747e35965f2aaf204dccbf65d6d0e39fa22249.zip | |
Fix && to && in Coding Standards.
llvm-svn: 164920
| -rw-r--r-- | llvm/docs/CodingStandards.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/llvm/docs/CodingStandards.rst b/llvm/docs/CodingStandards.rst index 455ffd5292a..71ddc59c5e5 100644 --- a/llvm/docs/CodingStandards.rst +++ b/llvm/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]; } |

