From bb63289c88bc81429e992bc6f14111b63d0b507a Mon Sep 17 00:00:00 2001 From: Noah Hefner Date: Sun, 24 May 2026 08:46:05 -0400 Subject: [PATCH] Fix typo in README Fix typo in README --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 7097517..b88736d 100644 --- a/README.md +++ b/README.md @@ -170,7 +170,7 @@ async def protected(): This way you can protected your endpoint and not have an unused variable. ### 4. Advanced Configuration -- **Scopes**: If you need to check for specific scopes (like `read:data`), call r`equire_auth(scopes="read:data")` or pass a list of scopes. The SDK will return a 403 if the token lacks those scopes in its `scope` claim. +- **Scopes**: If you need to check for specific scopes (like `read:data`), call `require_auth(scopes="read:data")` or pass a list of scopes. The SDK will return a 403 if the token lacks those scopes in its `scope` claim. ```python @app.get("/read-data") async def read_data_route(