Skip to content

Commit 4f64df7

Browse files
committed
Update packaging and fix spelling of capitalize
1 parent 0ed7962 commit 4f64df7

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ plugins {
55
}
66

77
group 'com.gauck.sam'
8-
version '0.2.0'
8+
version '0.3.0'
99

1010
sourceCompatibility = 1.8
1111

src/main/java/Utilities.java renamed to src/main/java/Utilities/Utilities.java

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,5 @@
1+
package Utilities;
2+
13
import java.util.*;
24

35
/**
@@ -16,7 +18,7 @@ private Utilities() {
1618
* @param original The string to be capitalized.
1719
* @return A capitalized version of the parameter.
1820
*/
19-
public static String capitailze(String original) {
21+
public static String capitalize(String original) {
2022
return original.substring(0, 1).toUpperCase() + original.substring(1).toLowerCase();
2123
}
2224

0 commit comments

Comments
 (0)