fix document example code missing semicolon issue

This commit is contained in:
LiangYong
2021-06-03 22:42:49 +08:00
committed by Soby Chacko
parent 49dc1f9ff9
commit 71f1af3c51

View File

@@ -250,7 +250,7 @@ public class SampleApplication {
public Function<String, String> uppercase() {
return value -> {
System.out.println("Received: " + value);
return value.toUpperCase()
return value.toUpperCase();
};
}
}