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);