]> granicus.if.org Git - clang/commitdiff
minor typographical fixes
authorChris Lattner <sabre@nondot.org>
Sun, 19 Apr 2009 02:02:45 +0000 (02:02 +0000)
committerChris Lattner <sabre@nondot.org>
Sun, 19 Apr 2009 02:02:45 +0000 (02:02 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@69502 91177308-0d34-0410-b5e6-96231b3b80d8

docs/DriverInternals.html

index da3808b43a9cda012f1012c6677f6643f49ad192..ad878003e8da92a45fe3e21aad0905c57fd0ac7d 100644 (file)
@@ -15,7 +15,7 @@
 
     <div id="content">
 
-      <h1>Driver Design & Internals</h1>
+      <h1>Driver Design &amp; Internals</h1>
 
       <ul>
         <li><a href="#intro">Introduction</a></li>
             5: assembler, {4}, object
             6: linker, {3, 5}, image
           </pre>
-          <p>Here the driver is constructing sevent distinct actions,
+          <p>Here the driver is constructing seven distinct actions,
             four to compile the "t.c" input into an object file, two to
             assemble the "t.s" input, and one to link them together.</p>
 
         <li>
           <b>Bind: Tool &amp; Filename Selection</b>
 
-          <p>The stage (in conjunction with the Translate stage) turns
+          <p>This stage (in conjunction with the Translate stage) turns
             the tree of Actions into a list of actual subprocess to
             run. Conceptually, the driver performs a simple tree match
             to assign Action(s) to Tools. Once an Action has been
         command line arguments the user really cared about may go
         unused. This problem is particularly important when using
         clang as a compiler, since the clang compiler does not support
-        anywhere all the options that gcc does, and we want to make
+        anywhere near all the options that gcc does, and we want to make
         sure users know which ones are being used.</p>
 
       <p>To support this, the driver maintains a bit associated with
         compilation. This bit usually doesn't need to be set by hand,
         as the key ArgList accessors will set it automatically.</p>
 
-      <p>When a compilation is successfull (there are no errors), the
+      <p>When a compilation is successful (there are no errors), the
         driver checks the bit and emits an "unused argument" warning for
         any arguments which were never accessed. This is conservative
         (the argument may not have been used to do what the user wanted)