From dd70dff4b9bf620c78cd399a88aa342be06216e9 Mon Sep 17 00:00:00 2001 From: Jonathon Allen <945646@gmail.com> Date: Fri, 9 May 2025 10:35:56 -0700 Subject: [PATCH] removed extra word --- .../specification/v3_0/Authentication/basic-authentication.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/content/docs/specification/v3_0/Authentication/basic-authentication.md b/src/content/docs/specification/v3_0/Authentication/basic-authentication.md index 6f67cb35..cadc31d8 100644 --- a/src/content/docs/specification/v3_0/Authentication/basic-authentication.md +++ b/src/content/docs/specification/v3_0/Authentication/basic-authentication.md @@ -8,7 +8,7 @@ sidebar: OAS **3** This guide is for OpenAPI 3.0. If you use OpenAPI 2.0, see our [OpenAPI 2.0 guide](/docs/specification/v2_0/authentication/basic-authentication/). ::: -[Basic authentication](https://en.wikipedia.org/wiki/Basic_access_authentication) is a simple authentication scheme built into the HTTP protocol. The client sends HTTP requests with the `Authorization` header that contains the word `Basic` word followed by a space and a base64-encoded string `username:password`. For example, to authorize as `demo / p@55w0rd` the client would send +[Basic authentication](https://en.wikipedia.org/wiki/Basic_access_authentication) is a simple authentication scheme built into the HTTP protocol. The client sends HTTP requests with the `Authorization` header that contains the word `Basic` followed by a space and a base64-encoded string `username:password`. For example, to authorize as `demo / p@55w0rd` the client would send ```yaml Authorization: Basic ZGVtbzpwQDU1dzByZA==