Add underscore to puncutation list
There was previously no way to access the underscore - it is a necessary character for entering URLs, amongst other things Added right behind the dash, though where it exists doesnt matter so much as THAT it exists as a choice
This commit is contained in:
parent
9e46213454
commit
49ecf259fd
1 changed files with 1 additions and 1 deletions
|
|
@ -8,7 +8,7 @@ import java.util.Arrays;
|
|||
|
||||
public class Punctuation {
|
||||
final public static ArrayList<String> Main = new ArrayList<>(Arrays.asList(
|
||||
",", ".", "-", "(", ")", "[", "]", "&", "~", "`", "'", ";", ":", "\"", "!", "?"
|
||||
",", ".", "-", "_", "(", ")", "[", "]", "&", "~", "`", "'", ";", ":", "\"", "!", "?"
|
||||
));
|
||||
|
||||
final public static ArrayList<String> Secondary = new ArrayList<>(Arrays.asList(
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue