1
0
mirror of https://github.com/django/django.git synced 2025-10-31 09:41:08 +00:00

Prevented (and corrected) single backtick usage in docs.

This commit is contained in:
Adam Johnson
2020-03-31 09:37:38 +01:00
committed by Carlton Gibson
parent 4a6f2b63d7
commit 1cdfe8d912
42 changed files with 105 additions and 88 deletions

View File

@@ -12,7 +12,7 @@ WSGI header spoofing via underscore/dash conflation
When HTTP headers are placed into the WSGI environ, they are normalized by
converting to uppercase, converting all dashes to underscores, and prepending
`HTTP_`. For instance, a header ``X-Auth-User`` would become
``HTTP_``. For instance, a header ``X-Auth-User`` would become
``HTTP_X_AUTH_USER`` in the WSGI environ (and thus also in Django's
``request.META`` dictionary).