-
-
Notifications
You must be signed in to change notification settings - Fork 105
Open
Labels
Description
Type keywords are not used when the type name is part of an array type.
Example input:
String[] lemmatize(String[] toks, String[] tags);Example output:
String[] Lemmatize(String[] toks, String[] tags);Should be (note the capitalization):
string[] Lemmatize(string[] toks, string[] tags);