From d65ebceebad32634a85fc9910e84c9f96ca8aff8 Mon Sep 17 00:00:00 2001 From: Meador Inge Date: Wed, 20 Jun 2012 23:48:01 +0000 Subject: [PATCH] Removed some left over HTML tags and a '}'. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@158877 91177308-0d34-0410-b5e6-96231b3b80d8 --- docs/CodingStandards.rst | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/docs/CodingStandards.rst b/docs/CodingStandards.rst index a108666ce7e..e7e5f23aef0 100644 --- a/docs/CodingStandards.rst +++ b/docs/CodingStandards.rst @@ -528,12 +528,11 @@ example, this is *bad*: if (Type.isNull()) { Error = ASTContext::GE_Missing_jmp_buf; return QualType(); - } else { + } else { break; - } + } } } - } It is better to write it like this: -- 2.11.0