File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -36,7 +36,7 @@ using namespace swift;
36
36
using llvm::StringRef;
37
37
38
38
enum class ActionType {
39
- DumpTokenSyntaxs ,
39
+ DumpTokenSyntax ,
40
40
FullLexRoundTrip,
41
41
FullParseRoundTrip,
42
42
None
@@ -47,7 +47,7 @@ static llvm::cl::opt<ActionType>
47
47
Action (llvm::cl::desc(" Action (required):" ),
48
48
llvm::cl::init (ActionType::None),
49
49
llvm::cl::values (
50
- clEnumValN (ActionType::DumpTokenSyntaxs ,
50
+ clEnumValN (ActionType::DumpTokenSyntax ,
51
51
" dump-full-tokens" ,
52
52
" Lex the source file and dump the tokens "
53
53
" and their absolute line/column locations" ),
@@ -220,7 +220,7 @@ int main(int argc, char *argv[]) {
220
220
}
221
221
222
222
switch (options::Action) {
223
- case ActionType::DumpTokenSyntaxs :
223
+ case ActionType::DumpTokenSyntax :
224
224
ExitCode = doDumpTokenSyntax (options::InputSourceFilename);
225
225
break ;
226
226
case ActionType::FullLexRoundTrip:
You can’t perform that action at this time.
0 commit comments