From 96c79be4e436f0b3045421556a2253cbff4533dc Mon Sep 17 00:00:00 2001 From: Aleksandr Safonov Date: Fri, 18 Apr 2025 16:46:02 +0300 Subject: Fixed #36332 -- Corrected HttpRequest.get_full_path() and HttpRequest.get_full_path_info() examples. --- docs/ref/request-response.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'docs/ref/request-response.txt') 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) -- cgit v1.3