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")) ] ```