summaryrefslogtreecommitdiff
path: root/docs/releases/0.95.txt
diff options
context:
space:
mode:
authorMariusz Felisiak <felisiak.mariusz@gmail.com>2022-03-17 11:10:03 +0100
committerGitHub <noreply@github.com>2022-03-17 11:10:03 +0100
commit39ae8d740e30c18e46873cf82aff76588f1974c7 (patch)
treeb5c2670dd7b321face5deb15def2258844a90e97 /docs/releases/0.95.txt
parentba298a32b30eb270ea0bf4f8fc208223d0b40bcd (diff)
downloaddjango-39ae8d740e30c18e46873cf82aff76588f1974c7.tar.gz
Added missing backticks to function names.
Diffstat (limited to 'docs/releases/0.95.txt')
-rw-r--r--docs/releases/0.95.txt6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/releases/0.95.txt b/docs/releases/0.95.txt
index 5edb043b0a..9ba89dd919 100644
--- a/docs/releases/0.95.txt
+++ b/docs/releases/0.95.txt
@@ -71,9 +71,9 @@ The new features and changes introduced in 0.95 include:
URLconfs/views on their own. Previously, the framework required that a
database be configured, regardless of whether you actually used it.
-* It's now more explicit and natural to override save() and delete()
- methods on models, rather than needing to hook into the pre_save() and
- post_save() method hooks.
+* It's now more explicit and natural to override ``save()`` and ``delete()``
+ methods on models, rather than needing to hook into the ``pre_save()`` and
+ ``post_save()`` method hooks.
* Individual pieces of the framework now can be configured without
requiring the setting of an environment variable. This permits use of,