Skip to content

Commit

Permalink
Minor typo fix.
Browse files Browse the repository at this point in the history
  • Loading branch information
biodranik committed Dec 4, 2017
1 parent 8c489ba commit c98e078
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lambdas.md
Original file line number Diff line number Diff line change
Expand Up @@ -85,7 +85,7 @@ ints.map { it * 2 }

Эти конвенции позволяют писать код в стиле [LINQ](http://msdn.microsoft.com/en-us/library/bb308959.aspx):
``` kotlin
strings.filter { it.lenght == 5 }.sortBy { it }.map { it.toUpperCase() }
strings.filter { it.length == 5 }.sortBy { it }.map { it.toUpperCase() }
```

### Символ подчеркивания для неиспользуемых переменных (since 1.1)
Expand Down

0 comments on commit c98e078

Please sign in to comment.