From 7fd96f5773ef9645447953bed301fa6b856fcd5d Mon Sep 17 00:00:00 2001 From: Ilya Gorbunov Date: Thu, 26 Nov 2020 04:23:58 +0300 Subject: [PATCH] Fix annotation spelling in docs KT-43586 --- .../stdlib/jdk7/src/kotlin/io/path/ExperimentalPathApi.kt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/libraries/stdlib/jdk7/src/kotlin/io/path/ExperimentalPathApi.kt b/libraries/stdlib/jdk7/src/kotlin/io/path/ExperimentalPathApi.kt index 8425718e384..352a8409154 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)