close run-away tag
authorChris Lattner <sabre@nondot.org>
Sat, 3 Feb 2007 07:59:51 +0000 (07:59 +0000)
committerChris Lattner <sabre@nondot.org>
Sat, 3 Feb 2007 07:59:51 +0000 (07:59 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@33828 91177308-0d34-0410-b5e6-96231b3b80d8

docs/ProgrammersManual.html

index 633b167b4c3d12428938d1a1e11ca88c38b38090..46077b82d4289bd635b08ba4720e586d36adfae5 100644 (file)
@@ -904,7 +904,7 @@ with a standard binary search.</p>
 <div class="doc_text">
 
 <p>If you have a set-like datastructure that is usually small and whose elements
-are reasonably small, a <tt>SmallSet&lt;Type, N&gt; is a good choice.  This set
+are reasonably small, a <tt>SmallSet&lt;Type, N&gt;</tt> is a good choice.  This set
 has space for N elements in place (thus, if the set is dynamically smaller than
 N, no malloc traffic is required) and access them with a simple linear search.
 When the set grows beyond 'N', it allocates a more expensive representation that