issue-26994 add missing ) to kotlin example

This commit is contained in:
jbotuck
2021-05-27 22:03:28 -05:00
committed by Rossen Stoyanchev
parent 7dbbf364f7
commit 491d1c4c78
+1 -1
View File
@@ -8277,7 +8277,7 @@ it resembles the following:
fun userService(): Service {
return SimpleUserService().apply {
// a reference to the proxied userPreferences bean
setUserPreferences(userPreferences()
setUserPreferences(userPreferences())
}
}
----