We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 63c2cf6 commit e932662Copy full SHA for e932662
learning/code-style/property-type.md
@@ -50,6 +50,6 @@ sidebar_position: 3
50
```kotlin
51
val usersList = listOf<User>()
52
val count = 100
53
- val productList = domainProducts.map(::domainToProduct)
54
- val messageText = message.text
+ val productList: List<Product> = domainProducts.map(::domainToProduct)
+ val messageText: String = message.text
55
```
0 commit comments