Skip to content

Commit 15da36c

Browse files
Update README.md
1 parent a2829d5 commit 15da36c

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

_moreReadMe/kotlin_basics/README.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -226,7 +226,6 @@ We are going to spend a considerable time in discussing function because it has
226226
- Optional parameter
227227
- Positional argument and named argument
228228
- Variable argument
229-
- Single expression function
230229
- Function type
231230
- Function literals
232231
- Callable references
@@ -265,7 +264,7 @@ fun italianGreeting() : String{
265264
}
266265
```
267266

268-
Idea behind **Lambda** syntax is that if you have a function and its only param is another param then you can omit the pranthesis altogether and you can pass that function in by specifying this open & clos parenthesis
267+
Idea behind **Lambda** syntax is that if you have a function and its only param is another param then you can omit the pranthesis altogether and you can pass that function in by specifying this open & close parenthesis
269268

270269

271270
**Higher order Functions** are fun that either return a fun or take fun as param

0 commit comments

Comments
 (0)