diff --git a/libraries/stdlib/jdk7/src/kotlin/io/path/ExperimentalPathApi.kt b/libraries/stdlib/jdk7/src/kotlin/io/path/ExperimentalPathApi.kt index 8425718e3847e..352a840915477 100644 --- a/libraries/stdlib/jdk7/src/kotlin/io/path/ExperimentalPathApi.kt +++ b/libraries/stdlib/jdk7/src/kotlin/io/path/ExperimentalPathApi.kt @@ -13,9 +13,9 @@ import kotlin.annotation.AnnotationTarget.* * > Beware using the annotated API especially if you're developing a library, since your library might become binary incompatible * with the future versions of the standard library. * - * Any usage of a declaration annotated with `@ExperimentalPathAPI` must be accepted either by - * annotating that usage with the [OptIn] annotation, e.g. `@OptIn(ExperimentalPathAPI::class)`, - * or by using the compiler argument `-Xopt-in=kotlin.io.path.ExperimentalPathAPI`. + * Any usage of a declaration annotated with `@ExperimentalPathApi` must be accepted either by + * annotating that usage with the [OptIn] annotation, e.g. `@OptIn(ExperimentalPathApi::class)`, + * or by using the compiler argument `-Xopt-in=kotlin.io.path.ExperimentalPathApi`. */ @RequiresOptIn(level = RequiresOptIn.Level.ERROR) @Retention(AnnotationRetention.BINARY)