From e492d23d58fcfb233b84e4e734a66dc3ec5804a6 Mon Sep 17 00:00:00 2001 From: Dmitry Jemerov Date: Tue, 12 Jul 2016 16:08:26 +0200 Subject: [PATCH] more sensible docs for @MustBeDocumented --- core/builtins/src/kotlin/annotation/Annotations.kt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/core/builtins/src/kotlin/annotation/Annotations.kt b/core/builtins/src/kotlin/annotation/Annotations.kt index a8b931cd5aa..2500fb9622e 100644 --- a/core/builtins/src/kotlin/annotation/Annotations.kt +++ b/core/builtins/src/kotlin/annotation/Annotations.kt @@ -91,7 +91,8 @@ public annotation class Retention(val value: AnnotationRetention = AnnotationRet public annotation class Repeatable /** - * This meta-annotation determines that an annotation is a part of public API and therefore must be documented + * This meta-annotation determines that an annotation is a part of public API and therefore should be included in the generated + * documentation for the element to which the annotation is applied. */ @Target(AnnotationTarget.ANNOTATION_CLASS) public annotation class MustBeDocumented \ No newline at end of file