]> granicus.if.org Git - clang/commitdiff
Fix comment typo.
authorDaniel Dunbar <daniel@zuster.org>
Sun, 15 Mar 2009 05:58:43 +0000 (05:58 +0000)
committerDaniel Dunbar <daniel@zuster.org>
Sun, 15 Mar 2009 05:58:43 +0000 (05:58 +0000)
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@67021 91177308-0d34-0410-b5e6-96231b3b80d8

include/clang/Driver/Options.def

index 38035b7cc61c96bfaf7b433301e5a54fabd13cb2..3d6b2ac6ff2eb9be9563c586bc54aa68c142b2b6 100644 (file)
@@ -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
 
 // 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