Fix Django Docs url in reverse.md

Django URLs of the documentation of `reverse` and `reverse_lazy` were wrong.
This commit is contained in:
Dominik Bruhn 2023-05-16 19:47:58 +02:00 committed by GitHub
parent 7bebe97724
commit 1f77269e61
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -54,5 +54,5 @@ As with the `reverse` function, you should **include the request as a keyword ar
api_root = reverse_lazy('api-root', request=request)
[cite]: https://www.ics.uci.edu/~fielding/pubs/dissertation/rest_arch_style.htm#sec_5_1_5
[reverse]: https://docs.djangoproject.com/en/stable/topics/http/urls/#reverse
[reverse-lazy]: https://docs.djangoproject.com/en/stable/topics/http/urls/#reverse-lazy
[reverse]: https://docs.djangoproject.com/en/4.2/ref/urlresolvers/#reverse
[reverse-lazy]: https://docs.djangoproject.com/en/4.2/ref/urlresolvers/#reverse-lazy