forked from OSchip/llvm-project
Use the correct symbol for a left bracket.
PR19089 llvm-svn: 203906
This commit is contained in:
parent
90c4436962
commit
81eeb82a56
|
@ -1820,7 +1820,7 @@ SpellingCache = {
|
|||
# 5 : CompletionChunk.Kind("CurrentParameter"),
|
||||
6: '(', # CompletionChunk.Kind("LeftParen"),
|
||||
7: ')', # CompletionChunk.Kind("RightParen"),
|
||||
8: ']', # CompletionChunk.Kind("LeftBracket"),
|
||||
8: '[', # CompletionChunk.Kind("LeftBracket"),
|
||||
9: ']', # CompletionChunk.Kind("RightBracket"),
|
||||
10: '{', # CompletionChunk.Kind("LeftBrace"),
|
||||
11: '}', # CompletionChunk.Kind("RightBrace"),
|
||||
|
|
Loading…
Reference in New Issue