1
0
mirror of https://github.com/django/django.git synced 2025-10-23 21:59:11 +00:00

Added missing backticks in various docs.

This commit is contained in:
Mariusz Felisiak
2020-03-06 11:52:49 +01:00
committed by GitHub
parent 08a6215d33
commit 30ca66eadd
6 changed files with 7 additions and 7 deletions

View File

@@ -42,7 +42,7 @@ You'll need to follow these steps:
``django.utils.deconstruct.deconstructible`` class decorator for this
(that's what Django uses on FileSystemStorage).
By default, the following methods raise `NotImplementedError` and will
By default, the following methods raise ``NotImplementedError`` and will
typically have to be overridden:
* :meth:`Storage.delete`
@@ -56,7 +56,7 @@ omitted. As it happens, it is possible to leave each method unimplemented and
still have a working Storage.
By way of example, if listing the contents of certain storage backends turns
out to be expensive, you might decide not to implement `Storage.listdir`.
out to be expensive, you might decide not to implement ``Storage.listdir()``.
Another example would be a backend that only handles writing to files. In this
case, you would not need to implement any of the above methods.