OptParser.td: typo

llvm-svn: 186517
This commit is contained in:
Hans Wennborg 2013-07-17 16:26:38 +00:00
parent 4f01ff8bfe
commit 43b4773a20
1 changed files with 2 additions and 2 deletions

View File

@ -14,10 +14,10 @@
// Define the kinds of options.
class OptionKind<string name, int predecence = 0, bit sentinel = 0> {
class OptionKind<string name, int precedence = 0, bit sentinel = 0> {
string Name = name;
// The kind precedence, kinds with lower precedence are matched first.
int Precedence = predecence;
int Precedence = precedence;
// Indicate a sentinel option.
bit Sentinel = sentinel;
}