1
0
Fork 0

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:
justbruce 2023-02-14 00:25:30 -06:00 committed by Dimo Karaivanov
parent 9e46213454
commit 49ecf259fd

View file

@ -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(