Fix typo in comment.

llvm-svn: 286657
This commit is contained in:
Rui Ueyama 2016-11-11 22:41:47 +00:00
parent c94ca916f5
commit 96a905f7ba
1 changed files with 1 additions and 1 deletions

View File

@ -767,7 +767,7 @@ private:
///
/// std::vector<char> Items = {'A', 'B', 'C', 'D'};
/// for (auto X : enumerate(Items)) {
/// printf("Item %d - %c\n", X.Item, X.Value);
/// printf("Item %d - %c\n", X.Index, X.Value);
/// }
///
/// Output: