From d8aa0d139ea51e408057ca8bdec5e3a088a36d7c Mon Sep 17 00:00:00 2001 From: James Strachan Date: Sat, 17 Mar 2012 10:33:11 +0000 Subject: [PATCH] tidied up the comments --- libraries/stdlib/test/language/scala/OptionTest.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libraries/stdlib/test/language/scala/OptionTest.kt b/libraries/stdlib/test/language/scala/OptionTest.kt index b437015c96e..23977c75e9e 100644 --- a/libraries/stdlib/test/language/scala/OptionTest.kt +++ b/libraries/stdlib/test/language/scala/OptionTest.kt @@ -21,7 +21,7 @@ class Request(val value: String?) { * * Examples taken from the [Scala API docs for Option](http://www.scala-lang.org/api/current/scala/Option.html) * - * Note that currently the Kotlin library doesn't support the composition API of collections on T? like Scala's Option[T] does... + * Composition of nullable types is currently implemented with the optional kotlin.nullable package */ class OptionTest: TestCase() {