From e77eec0ff270b66dfad1dc0987ea0f69cf6ee501 Mon Sep 17 00:00:00 2001 From: Asif Saif Uddin Date: Tue, 27 Aug 2024 13:38:03 +0600 Subject: [PATCH] Update docs/topics/browsable-api.md --- docs/topics/browsable-api.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/topics/browsable-api.md b/docs/topics/browsable-api.md index e02d8e645..fe35be8b3 100644 --- a/docs/topics/browsable-api.md +++ b/docs/topics/browsable-api.md @@ -24,7 +24,7 @@ from django.urls import include, path urlpatterns = [ # ... - re_path(r"^api-auth/", include("rest_framework.urls", namespace="rest_framework")) + path("api-auth/", include("rest_framework.urls", namespace="rest_framework")) ] ```