aboutsummaryrefslogtreecommitdiff
path: root/docs/ProgrammersManual.html
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2007-03-28 18:27:57 +0000
committerChris Lattner <sabre@nondot.org>2007-03-28 18:27:57 +0000
commit9bb3dbb6ff76e89478ea46ad31bdd8ffb9a368ad (patch)
tree732f91ce4c79b0966fc2f76b1e8cbfdbcf2c2950 /docs/ProgrammersManual.html
parent6ef3307062073ca584ea6980af88787c013ade71 (diff)
Stop using the foo HTML tag :)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@35436 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs/ProgrammersManual.html')
-rw-r--r--docs/ProgrammersManual.html4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/ProgrammersManual.html b/docs/ProgrammersManual.html
index bde2ae03d3..9661b76935 100644
--- a/docs/ProgrammersManual.html
+++ b/docs/ProgrammersManual.html
@@ -803,7 +803,7 @@ vector is also useful when interfacing with code that expects vectors :).
<div class="doc_code">
<pre>
for ( ... ) {
- std::vector<foo> V;
+ std::vector&lt;foo&gt; V;
use V;
}
</pre>
@@ -813,7 +813,7 @@ for ( ... ) {
<div class="doc_code">
<pre>
-std::vector<foo> V;
+std::vector&lt;foo&gt; V;
for ( ... ) {
use V;
V.clear();