Update FunctionConfiguration.java

Updated typo in comment
This commit is contained in:
Owolabi Timothy
2021-01-26 06:18:33 +01:00
committed by GitHub
parent b7a2d5b905
commit 6e29ef991d

View File

@@ -10,7 +10,7 @@ import org.springframework.context.annotation.Bean;
public class FunctionConfiguration {
/*
* You need this main method or explicit <start-class>example.FunjctionConfiguration</start-class>
* You need this main method or explicit <start-class>example.FunctionConfiguration</start-class>
* in the POM to ensure boot plug-in makes the correct entry
*/
public static void main(String[] args) {
@@ -21,4 +21,4 @@ public class FunctionConfiguration {
public Function<String, String> uppercase() {
return value -> value.toUpperCase();
}
}
}