[llvm-commits] [llvm] r61531 - /llvm/trunk/include/llvm/Assembly/Parser.h

Misha Brukman brukman+llvm at gmail.com
Wed Dec 31 09:44:37 PST 2008


Author: brukman
Date: Wed Dec 31 11:44:36 2008
New Revision: 61531

URL: http://llvm.org/viewvc/llvm-project?rev=61531&view=rev
Log:
Fixed grammar and capitalization.

Modified:
    llvm/trunk/include/llvm/Assembly/Parser.h

Modified: llvm/trunk/include/llvm/Assembly/Parser.h
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/include/llvm/Assembly/Parser.h?rev=61531&r1=61530&r2=61531&view=diff

==============================================================================
--- llvm/trunk/include/llvm/Assembly/Parser.h (original)
+++ llvm/trunk/include/llvm/Assembly/Parser.h Wed Dec 31 11:44:36 2008
@@ -21,9 +21,8 @@
 class Module;
 class ParseError;
 
-
-/// This function is the main interface to the LLVM Assembly Parse. It parses 
-/// an ascii file that (presumably) contains LLVM Assembly code. It returns a
+/// This function is the main interface to the LLVM Assembly Parser. It parses
+/// an ASCII file that (presumably) contains LLVM Assembly code. It returns a
 /// Module (intermediate representation) with the corresponding features. Note
 /// that this does not verify that the generated Module is valid, so you should
 /// run the verifier after parsing the file to check that it is okay.
@@ -33,8 +32,8 @@
   ParseError* Error = 0        ///< If not null, an object to return errors in.
 );
 
-/// The function is a secondary interface to the LLVM Assembly Parse. It parses 
-/// an ascii string that (presumably) contains LLVM Assembly code. It returns a
+/// The function is a secondary interface to the LLVM Assembly Parser. It parses
+/// an ASCII string that (presumably) contains LLVM Assembly code. It returns a
 /// Module (intermediate representation) with the corresponding features. Note
 /// that this does not verify that the generated Module is valid, so you should
 /// run the verifier after parsing the file to check that it is okay.





More information about the llvm-commits mailing list