Docs: reword summaries for a couple of experimental annotations

This commit is contained in:
Ilya Gorbunov
2019-03-11 20:12:53 +03:00
parent ffe8b4419c
commit ed878be1f7
2 changed files with 2 additions and 2 deletions
@@ -3,7 +3,7 @@ package kotlin
import kotlin.annotation.AnnotationTarget.*
/**
* The experimental standard library API marker. The API marked with this annotation is not subject to the
* This annotation marks the standard library API that is considered experimental and is not subject to the
* [general compatibility guarantees](https://kotlinlang.org/docs/reference/evolution/components-stability.html) given for the standard library:
* the behavior of such API may be changed or the API may be removed completely in any further release.
*
@@ -6,7 +6,7 @@
package kotlin.experimental
/**
* The experimental type inference augmenting annotations marker.
* The experimental marker for type inference augmenting annotations.
*
* Any usage of a declaration annotated with `@ExperimentalTypeInference` must be accepted either by
* annotating that usage with the [UseExperimental] annotation, e.g. `@UseExperimental(ExperimentalTypeInference::class)`,