From 6f85f253f7820187c3bfd78f4f40400cbdd68356 Mon Sep 17 00:00:00 2001 From: Samuel Marks <807580+SamuelMarks@users.noreply.github.com> Date: Fri, 29 Mar 2024 04:58:57 -0400 Subject: [PATCH] [ktor-http/common/src/io/ktor/http/auth/AuthScheme.kt] Make doc to refer to correct RFCs (#4004) --- ktor-http/common/src/io/ktor/http/auth/AuthScheme.kt | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) 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 aad6f19d7b..a850008c34 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" }