aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDaniel Dunbar <daniel@zuster.org>2009-03-15 05:58:43 +0000
committerDaniel Dunbar <daniel@zuster.org>2009-03-15 05:58:43 +0000
commit4abaed07d1b8037870a1c0de75746aa74d56c428 (patch)
tree73f4c38267c3fbbf8c61d2c68ead648f599e07dc
parentcf117d367ee75d44dfeaf588e00ad0bfbad64ef7 (diff)
Fix comment typo.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@67021 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--include/clang/Driver/Options.def15
1 files changed, 8 insertions, 7 deletions
diff --git a/include/clang/Driver/Options.def b/include/clang/Driver/Options.def
index 38035b7cc6..3d6b2ac6ff 100644
--- a/include/clang/Driver/Options.def
+++ b/include/clang/Driver/Options.def
@@ -24,9 +24,9 @@
// C++ identifier, and results in a clang::driver::options::OPT_XX
// enum constant for XX.
//
-// We want to unamiguously be able to refer to options from the driver
-// source code, for this reason the option name is mangled into an
-// id. This mangling isn't guaranteed to have an inverse, but for
+// We want to unambiguously be able to refer to options from the
+// driver source code, for this reason the option name is mangled into
+// an id. This mangling isn't guaranteed to have an inverse, but for
// practical purposes it does.
//
// The mangling scheme is to ignore the leading '-', and perform the
@@ -70,10 +70,11 @@
// For now (pre-TableGen, that is) Options must be in order. The
// ordering is *almost* lexicographic, with two exceptions. First,
-// '\0' comes at the end of the alphabet not the beginning (thus
-// options preceed any other options which prefix them). Second, for
-// options with the same name, the less permissive version should come
-// first; a Flag option should preceed a Joined option, for example.
+// '\0' comes at the end of the alphabet instead of the beginning
+// (thus options preceed any other options which prefix them). Second,
+// for options with the same name, the less permissive version should
+// come first; a Flag option should preceed a Joined option, for
+// example.
/////////
// Groups