diff --git a/ktor-http/common/src/io/ktor/http/auth/AuthScheme.kt b/ktor-http/common/src/io/ktor/http/auth/AuthScheme.kt index aad6f19d7b9..a850008c340 100644 --- a/ktor-http/common/src/io/ktor/http/auth/AuthScheme.kt +++ b/ktor-http/common/src/io/ktor/http/auth/AuthScheme.kt @@ -47,9 +47,10 @@ public object AuthScheme { public const val OAuth: String = "OAuth" /** - * Bearer Authentication described in the RFC-6749: + * Bearer Authentication described in the RFC-6749 & RFC6750: * - * see https://tools.ietf.org/html/rfc6750 + * see https://tools.ietf.org/html/rfc6749 + * & https://tools.ietf.org/html/rfc6750 */ public const val Bearer: String = "Bearer" }