Removed some left over HTML tags and a '}'.
authorMeador Inge <meadori@codesourcery.com>
Wed, 20 Jun 2012 23:48:01 +0000 (23:48 +0000)
committerMeador Inge <meadori@codesourcery.com>
Wed, 20 Jun 2012 23:48:01 +0000 (23:48 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@158877 91177308-0d34-0410-b5e6-96231b3b80d8

docs/CodingStandards.rst

index a108666ce7e03e3b5fdb2f0dc3a40775642bc918..e7e5f23aef097f4231d53067e8540f74ae1641c5 100644 (file)
@@ -528,12 +528,11 @@ example, this is *bad*:
       if (Type.isNull()) {
         Error = ASTContext::GE_Missing_jmp_buf;
         return QualType();
-      <b>} else {
+      } else {
         break;
-      }</b>
+      }
     }
   }
-  }
 
 It is better to write it like this: