Fix annotation spelling in docs

KT-43586
This commit is contained in:
Ilya Gorbunov
2020-11-26 04:23:58 +03:00
parent db9f301eed
commit 7fd96f5773
@@ -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)