diff options
| author | Aleksandr Safonov <sashakashvile@gmail.com> | 2025-04-18 16:46:02 +0300 |
|---|---|---|
| committer | Sarah Boyce <42296566+sarahboyce@users.noreply.github.com> | 2025-05-13 17:41:17 +0200 |
| commit | 96c79be4e436f0b3045421556a2253cbff4533dc (patch) | |
| tree | 2b30da96413968c7bb4155771560448fc64bfbb7 /docs/ref | |
| parent | f920937c8a63df6bea220e4386f59cdb45b2e355 (diff) | |
Fixed #36332 -- Corrected HttpRequest.get_full_path() and HttpRequest.get_full_path_info() examples.
Diffstat (limited to 'docs/ref')
| -rw-r--r-- | docs/ref/request-response.txt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/ref/request-response.txt b/docs/ref/request-response.txt index 632e222998..9846a3a4b5 100644 --- a/docs/ref/request-response.txt +++ b/docs/ref/request-response.txt @@ -351,14 +351,14 @@ Methods Returns the ``path``, plus an appended query string, if applicable. - Example: ``"/music/bands/the_beatles/?print=true"`` + Example: ``"/minfo/music/bands/the_beatles/?print=true"`` .. method:: HttpRequest.get_full_path_info() Like :meth:`get_full_path`, but uses :attr:`path_info` instead of :attr:`path`. - Example: ``"/minfo/music/bands/the_beatles/?print=true"`` + Example: ``"/music/bands/the_beatles/?print=true"`` .. method:: HttpRequest.build_absolute_uri(location=None) |
