From 1aed7b4a325516be61b511ee3b0b96bbd73fc5d9 Mon Sep 17 00:00:00 2001 From: jburns6789 <117755326+jburns6789@users.noreply.github.com> Date: Wed, 20 Nov 2024 18:18:44 -0500 Subject: [PATCH] Added appropriate backticks for markup Backticks added to pass commit testing --- docs/ref/request-response.txt | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/ref/request-response.txt b/docs/ref/request-response.txt index f0e0c13a2f..b99ef25cac 100644 --- a/docs/ref/request-response.txt +++ b/docs/ref/request-response.txt @@ -555,10 +555,10 @@ a subclass of dictionary. Exceptions are outlined here: .. method:: QueryDict.__getitem__(key) Returns the last data value for the given key. If the key has more than one - value, it returns the last value. If the value is an empty list, [] is - returned. Raises django.utils.datastructures.MultiValueDictKeyError if + value, it returns the last value. If the value is an empty list, ``[]`` is + returned. Raises ``django.utils.datastructures.MultiValueDictKeyError`` if the key does not exist. (This is a subclass of Python's standard - :exc:KeyError, so you can stick to catching KeyError.) + :exc:`KeyError`, so you can stick to catching ``KeyError``.) .. method:: QueryDict.__setitem__(key, value)