Skip to content

Commit 3736bde

Browse files
committed
Refactoring
1 parent b425dfd commit 3736bde

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

awslambdaupdate/src/main/java/example/LambdaUpdate.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ public class LambdaUpdate {
3232
public static void main(String[] args) {
3333

3434
if (args.length < 4) {
35-
System.out.println("Not enough parameters.\n"+
35+
System.out.println("Not enough parameters.\n" +
3636
"Proper Usage is: java -jar lambdaupdate.jar " +
3737
"<FUNCTION_NAME> <FUNCTION_FILE> <FUNCTION_ROLE> <FUNCTION_HANDLER>");
3838
System.exit(1);
@@ -64,7 +64,7 @@ public static void main(String[] args) {
6464
.withRuntime("java8")
6565
.withRole(functionRole)
6666
.withHandler(functionHandler)
67-
.withDescription("Created by the Lambda Java API")
67+
.withDescription("Updated by the Lambda Java API")
6868
.withTimeout(15)
6969
.withMemorySize(128);
7070
UpdateFunctionConfigurationResult functionConfigurationResult =

0 commit comments

Comments
 (0)