Skip to content

Commit

Permalink
Fix missing indent in @InternalCoroutinesApi warning message
Browse files Browse the repository at this point in the history
  • Loading branch information
qwwdfsad committed Apr 19, 2021
1 parent e62f8f7 commit 95ad444
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion kotlinx-coroutines-core/common/src/Annotations.kt
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ public annotation class ObsoleteCoroutinesApi
@Target(AnnotationTarget.CLASS, AnnotationTarget.FUNCTION, AnnotationTarget.TYPEALIAS, AnnotationTarget.PROPERTY)
@RequiresOptIn(
level = RequiresOptIn.Level.ERROR, message = "This is an internal kotlinx.coroutines API that " +
"should not be used from outside of kotlinx.coroutines. No compatibility guarantees are provided." +
"should not be used from outside of kotlinx.coroutines. No compatibility guarantees are provided. " +
"It is recommended to report your use-case of internal API to kotlinx.coroutines issue tracker, " +
"so stable API could be provided instead"
)
Expand Down

0 comments on commit 95ad444

Please sign in to comment.