Skip to content

Commit

Permalink
Fix spelling in comments. NFCI.
Browse files Browse the repository at this point in the history
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@314515 91177308-0d34-0410-b5e6-96231b3b80d8
  • Loading branch information
RKSimon committed Sep 29, 2017
1 parent e116340 commit 1be91bb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions include/llvm/MC/MCParser/MCAsmParser.h
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ class InlineAsmIdentifierInfo {
enum IdKind {
IK_Invalid, // Initial state. Unexpected after a successful parsing.
IK_Label, // Function/Label reference.
IK_EnumVal, // Value of enumration type.
IK_EnumVal, // Value of enumeration type.
IK_Var // Variable.
};
// Represents an Enum value
Expand Down Expand Up @@ -88,7 +88,7 @@ class InlineAsmIdentifierInfo {
InlineAsmIdentifierInfo() : Kind(IK_Invalid) {}

private:
// Discrimint using the current kind
// Discriminate using the current kind.
IdKind Kind;
};

Expand Down

0 comments on commit 1be91bb

Please sign in to comment.