Skip to content

Commit 4395d33

Browse files
committed
Section 22 Lambda Expressions
Signed-off-by: https://github.com/Someshdiwan <[email protected]>
1 parent 4026225 commit 4395d33

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Section22Lambda Expressions/src/LambdaDemo.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ public void display() {
2727
};
2828
*/
2929

30-
//MyLambda Method. Method itself is an object in lambda class.
30+
//MyLambda Method. Method itself is an object in a lambda class.
3131
MyLambda m= () -> {System.out.println("Hello world");};
3232
m.display();
3333
}

0 commit comments

Comments
 (0)