Skip to content

Commit e661849

Browse files
committed
Follow Kotlin standard for OptIn annotation.
1 parent 414880b commit e661849

File tree

1 file changed

+2
-2
lines changed
  • jvm/selfie-lib/src/commonMain/kotlin/com/diffplug/selfie

1 file changed

+2
-2
lines changed

jvm/selfie-lib/src/commonMain/kotlin/com/diffplug/selfie/Selfie.kt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ object Selfie {
9595
* `selfie.*` it will keep looking up the stack trace until a caller is not inside `selfie.*`.
9696
*/
9797
@JvmStatic
98-
@VcrBeta
98+
@ExperimentalSelfieVcr
9999
fun vcrTestLocator(sub: String = "") = VcrSelfie.TestLocator(sub, deferredDiskStorage)
100100
}
101101

@@ -104,4 +104,4 @@ object Selfie {
104104
message = "This API is in beta and may change in the future.")
105105
@Retention(AnnotationRetention.BINARY)
106106
@Target(AnnotationTarget.CLASS, AnnotationTarget.FUNCTION, AnnotationTarget.PROPERTY)
107-
annotation class VcrBeta
107+
annotation class ExperimentalSelfieVcr

0 commit comments

Comments
 (0)