Skip to content

Commit 95ad444

Browse files
committed
Fix missing indent in @InternalCoroutinesApi warning message
1 parent e62f8f7 commit 95ad444

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

kotlinx-coroutines-core/common/src/Annotations.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ public annotation class ObsoleteCoroutinesApi
5959
@Target(AnnotationTarget.CLASS, AnnotationTarget.FUNCTION, AnnotationTarget.TYPEALIAS, AnnotationTarget.PROPERTY)
6060
@RequiresOptIn(
6161
level = RequiresOptIn.Level.ERROR, message = "This is an internal kotlinx.coroutines API that " +
62-
"should not be used from outside of kotlinx.coroutines. No compatibility guarantees are provided." +
62+
"should not be used from outside of kotlinx.coroutines. No compatibility guarantees are provided. " +
6363
"It is recommended to report your use-case of internal API to kotlinx.coroutines issue tracker, " +
6464
"so stable API could be provided instead"
6565
)

0 commit comments

Comments
 (0)