summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorChris Lattner <sabre@nondot.org>2008-06-20 05:03:17 +0000
committerChris Lattner <sabre@nondot.org>2008-06-20 05:03:17 +0000
commit28e6ff57d4d52c4b2934f223731a0c24dc14a624 (patch)
tree0f4c4024aaa6b31d7ed4bfb65d378d541b2c613a /docs
parent54227f6752befd3196e078b83e4c440ecaff2dd7 (diff)
downloadllvm-28e6ff57d4d52c4b2934f223731a0c24dc14a624.tar.gz
llvm-28e6ff57d4d52c4b2934f223731a0c24dc14a624.tar.bz2
llvm-28e6ff57d4d52c4b2934f223731a0c24dc14a624.tar.xz
Fix typo, fix suggested by Nicholas Olsen
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@52524 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'docs')
-rw-r--r--docs/ProgrammersManual.html2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/ProgrammersManual.html b/docs/ProgrammersManual.html
index 2a573f941a..46b82ddc21 100644
--- a/docs/ProgrammersManual.html
+++ b/docs/ProgrammersManual.html
@@ -333,7 +333,7 @@ file (note that you very rarely have to include this file directly).</p>
<dt><tt>cast&lt;&gt;</tt>: </dt>
<dd><p>The <tt>cast&lt;&gt;</tt> operator is a "checked cast" operation. It
- converts a pointer or reference from a base class to a derived cast, causing
+ converts a pointer or reference from a base class to a derived class, causing
an assertion failure if it is not really an instance of the right type. This
should be used in cases where you have some information that makes you believe
that something is of the right type. An example of the <tt>isa&lt;&gt;</tt>