Probando a agregar tests xD

This commit is contained in:
Daniel Cortes
2019-01-19 19:54:16 -03:00
parent d6997011e9
commit 21b1f976c3
6 changed files with 337 additions and 167 deletions

View File

@@ -25,7 +25,7 @@
package danielcortes.xyz.utils;
public class StringUtils {
public static String toUpperCase(String string){
public static String capitalize(String string){
return string.substring(0, 1).toUpperCase() + string.substring(1);
}
}