[llvm-commits] [llvm] r52524 - /llvm/trunk/docs/ProgrammersManual.html

Chris Lattner sabre at nondot.org
Thu Jun 19 22:03:19 PDT 2008


Author: lattner
Date: Fri Jun 20 00:03:17 2008
New Revision: 52524

URL: http://llvm.org/viewvc/llvm-project?rev=52524&view=rev
Log:
Fix typo, fix suggested by Nicholas Olsen


Modified:
    llvm/trunk/docs/ProgrammersManual.html

Modified: llvm/trunk/docs/ProgrammersManual.html
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/docs/ProgrammersManual.html?rev=52524&r1=52523&r2=52524&view=diff

==============================================================================
--- llvm/trunk/docs/ProgrammersManual.html (original)
+++ llvm/trunk/docs/ProgrammersManual.html Fri Jun 20 00:03:17 2008
@@ -333,7 +333,7 @@
   <dt><tt>cast<></tt>: </dt>
 
   <dd><p>The <tt>cast<></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<></tt>





More information about the llvm-commits mailing list