diff options
| author | Misha Brukman <brukman+llvm@gmail.com> | 2008-12-31 17:44:36 +0000 |
|---|---|---|
| committer | Misha Brukman <brukman+llvm@gmail.com> | 2008-12-31 17:44:36 +0000 |
| commit | 5347fb20ad76328feaa13603f0e94867f2bb2f4f (patch) | |
| tree | 1abfacfe331b184a35699adb3bb60b9d9ad99a80 /llvm | |
| parent | b132910b8f808991d50f30e1687b664b396a8b68 (diff) | |
| download | bcm5719-llvm-5347fb20ad76328feaa13603f0e94867f2bb2f4f.tar.gz bcm5719-llvm-5347fb20ad76328feaa13603f0e94867f2bb2f4f.zip | |
Fixed grammar and capitalization.
llvm-svn: 61531
Diffstat (limited to 'llvm')
| -rw-r--r-- | llvm/include/llvm/Assembly/Parser.h | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/llvm/include/llvm/Assembly/Parser.h b/llvm/include/llvm/Assembly/Parser.h index edca08c46fb..904130d67ca 100644 --- a/llvm/include/llvm/Assembly/Parser.h +++ b/llvm/include/llvm/Assembly/Parser.h @@ -21,9 +21,8 @@ namespace llvm { 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 @@ Module *ParseAssemblyFile( 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. |

