summaryrefslogtreecommitdiff
path: root/include/llvm/Assembly
diff options
context:
space:
mode:
authorMisha Brukman <brukman+llvm@gmail.com>2008-12-31 17:44:36 +0000
committerMisha Brukman <brukman+llvm@gmail.com>2008-12-31 17:44:36 +0000
commit3fa0de27278b73ce32a885a1b4bd29a4188266c6 (patch)
tree447a64e838726c5e7b4de946d65833b93814978a /include/llvm/Assembly
parentf2f8d79790acee471699d44dbbdaa02187b506bd (diff)
downloadllvm-3fa0de27278b73ce32a885a1b4bd29a4188266c6.tar.gz
llvm-3fa0de27278b73ce32a885a1b4bd29a4188266c6.tar.bz2
llvm-3fa0de27278b73ce32a885a1b4bd29a4188266c6.tar.xz
Fixed grammar and capitalization.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@61531 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'include/llvm/Assembly')
-rw-r--r--include/llvm/Assembly/Parser.h9
1 files changed, 4 insertions, 5 deletions
diff --git a/include/llvm/Assembly/Parser.h b/include/llvm/Assembly/Parser.h
index edca08c46f..904130d67c 100644
--- a/include/llvm/Assembly/Parser.h
+++ b/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.