diff options
author | Dan Gohman <gohman@apple.com> | 2008-11-24 17:18:39 +0000 |
---|---|---|
committer | Dan Gohman <gohman@apple.com> | 2008-11-24 17:18:39 +0000 |
commit | 8ef449828f94a02478852a1a4d81aa4dff477d9d (patch) | |
tree | 2a94ddbfdaa3f777474f88900e487284c57510e5 /llvm/docs/CodingStandards.html | |
parent | efc8c7a2924ec193378456ffb2d4339f577dfc7a (diff) | |
download | bcm5719-llvm-8ef449828f94a02478852a1a4d81aa4dff477d9d.tar.gz bcm5719-llvm-8ef449828f94a02478852a1a4d81aa4dff477d9d.zip |
Fix a few HTML tidiness issues.
llvm-svn: 59966
Diffstat (limited to 'llvm/docs/CodingStandards.html')
-rw-r--r-- | llvm/docs/CodingStandards.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/docs/CodingStandards.html b/llvm/docs/CodingStandards.html index 9a93278c56a..75d5cc83afa 100644 --- a/llvm/docs/CodingStandards.html +++ b/llvm/docs/CodingStandards.html @@ -645,7 +645,7 @@ code that should not be reached. These are typically of the form:</p> <div class="doc_code"> <pre> -assert(0 && "Some helpful error message"); +assert(0 && "Some helpful error message"); </pre> </div> @@ -656,7 +656,7 @@ generating a warning.</p> <div class="doc_code"> <pre> -assert(0 && "Some helpful error message"); +assert(0 && "Some helpful error message"); // Not reached return 0; </pre> |