Skip to content

Commit

Permalink
Fix annotation spelling in docs
Browse files Browse the repository at this point in the history
KT-43586

(cherry picked from commit 7fd96f5)
  • Loading branch information
ilya-g committed Nov 26, 2020
1 parent 02d925a commit a173e0e
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit a173e0e

Please sign in to comment.