From a980f84f054dc85337d9da0c1afd24abc27d1cb5 Mon Sep 17 00:00:00 2001 From: Aditya Mitra <55396651+aditya-mitra@users.noreply.github.com> Date: Sat, 28 Aug 2021 21:10:26 +0530 Subject: [PATCH] [FIX] Typo in api-guide/authentication --- docs/api-guide/authentication.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/api-guide/authentication.md b/docs/api-guide/authentication.md index 60544079f..57bbaeb67 100644 --- a/docs/api-guide/authentication.md +++ b/docs/api-guide/authentication.md @@ -13,7 +13,7 @@ Authentication is the mechanism of associating an incoming request with a set of REST framework provides several authentication schemes out of the box, and also allows you to implement custom schemes. -Authentication is always run at the very start of the view, before the permission and throttling checks occur, and before any other code is allowed to proceed. +Authentication always runs at the very start of the view, before the permission and throttling checks occur, and before any other code is allowed to proceed. The `request.user` property will typically be set to an instance of the `contrib.auth` package's `User` class.