From 05db7c3a15d1bf57d33ef5a4feb8030e5e9de63b Mon Sep 17 00:00:00 2001 From: Kamran Ahmed Date: Tue, 3 Jan 2023 20:32:16 +0400 Subject: [PATCH] Fix invalid language in markdown attribute --- content/guides/http-basic-authentication.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/guides/http-basic-authentication.md b/content/guides/http-basic-authentication.md index ab4966586..389ca4182 100644 --- a/content/guides/http-basic-authentication.md +++ b/content/guides/http-basic-authentication.md @@ -18,7 +18,7 @@ Now that we know what basic authentication is, the question is, how does it work ### Step 1 When the browser first requests the server, the server tries to check the availability of the `Authorization` header in the request. Because it is the first request, no `Authorization` header is found in the request. So the server responds with the `401 Unauthorized` response code and also sends the `WWW-Authenticate` header with the value set to `Basic`, which tells the browser that it needs to trigger the basic authentication flow. -```text +```plaintext 401 Unauthorized WWW-Authenticate: Basic realm='user_pages' ```