From 6b392a46ea025148a24ce665e9c18e4386dde8fa Mon Sep 17 00:00:00 2001 From: Aditya Mitra <55396651+aditya-mitra@users.noreply.github.com> Date: Tue, 31 Aug 2021 18:27:02 +0530 Subject: [PATCH] [FIX] Typo in api-guide/authentication (#8144) --- 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.