[llvm-commits] [llvm] r97257 - in /llvm/trunk/docs: CodingStandards.html CommandLine.html DeveloperPolicy.html

Dan Gohman gohman at apple.com
Fri Feb 26 12:18:33 PST 2010


Author: djg
Date: Fri Feb 26 14:18:32 2010
New Revision: 97257

URL: http://llvm.org/viewvc/llvm-project?rev=97257&view=rev
Log:
Fix typos in comments.

Modified:
    llvm/trunk/docs/CodingStandards.html
    llvm/trunk/docs/CommandLine.html
    llvm/trunk/docs/DeveloperPolicy.html

Modified: llvm/trunk/docs/CodingStandards.html
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/docs/CodingStandards.html?rev=97257&r1=97256&r2=97257&view=diff
==============================================================================
--- llvm/trunk/docs/CodingStandards.html (original)
+++ llvm/trunk/docs/CodingStandards.html Fri Feb 26 14:18:32 2010
@@ -194,9 +194,9 @@
 <b>Method information</b>
 
 <p>Methods defined in a class (as well as any global functions) should also be
-documented properly.  A quick note about what it does any a description of the
+documented properly.  A quick note about what it does and a description of the
 borderline behaviour is all that is necessary here (unless something
-particularly tricky or insideous is going on).  The hope is that people can
+particularly tricky or insidious is going on).  The hope is that people can
 figure out how to use your interfaces without reading the code itself... that is
 the goal metric.</p>
 

Modified: llvm/trunk/docs/CommandLine.html
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/docs/CommandLine.html?rev=97257&r1=97256&r2=97257&view=diff
==============================================================================
--- llvm/trunk/docs/CommandLine.html (original)
+++ llvm/trunk/docs/CommandLine.html Fri Feb 26 14:18:32 2010
@@ -706,7 +706,7 @@
 <div class="doc_text">
 
 <p>Instead of collecting sets of options in a list, it is also possible to
-gather information for enum values in a <b>bit vector</b>.  The represention used by
+gather information for enum values in a <b>bit vector</b>.  The representation used by
 the <a href="#bits"><tt>cl::bits</tt></a> class is an <tt>unsigned</tt>
 integer.  An enum value is represented by a 0/1 in the enum's ordinal value bit
 position. 1 indicating that the enum was specified, 0 otherwise.  As each

Modified: llvm/trunk/docs/DeveloperPolicy.html
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/docs/DeveloperPolicy.html?rev=97257&r1=97256&r2=97257&view=diff
==============================================================================
--- llvm/trunk/docs/DeveloperPolicy.html (original)
+++ llvm/trunk/docs/DeveloperPolicy.html Fri Feb 26 14:18:32 2010
@@ -520,7 +520,7 @@
 <p>We intend to keep LLVM perpetually open source and to use a liberal open
    source license. The current license is the
    <a href="http://www.opensource.org/licenses/UoI-NCSA.php">University of
-   llinois/NCSA Open Source License</a>, which boils down to this:</p>
+   Illinois/NCSA Open Source License</a>, which boils down to this:</p>
 
 <ul>
   <li>You can freely distribute LLVM.</li>





More information about the llvm-commits mailing list