summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorNatalia <124304+nessita@users.noreply.github.com>2025-02-07 14:12:07 -0300
committerNatalia <124304+nessita@users.noreply.github.com>2025-02-10 22:59:17 -0300
commit12517e667b3bd39a62a7a95ccd7c8ad7638098e0 (patch)
tree5fdda8dc6ddfa28713f01d96fa8b0fad62f3f372 /docs
parentefef715525a092d648c47c400c7b4f70337d3387 (diff)
[5.2.x] Wrapped lines at 79 cols in docs/howto/custom-shell.txt.
Backport of ca0794fa32b64ee42e9dce6df967777cb6347483 from main.
Diffstat (limited to 'docs')
-rw-r--r--docs/howto/custom-shell.txt6
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/howto/custom-shell.txt b/docs/howto/custom-shell.txt
index f4df359981..dafbac7650 100644
--- a/docs/howto/custom-shell.txt
+++ b/docs/howto/custom-shell.txt
@@ -7,9 +7,9 @@ access to models and settings, making it useful for testing code, experimenting
with queries, and interacting with application data.
Customizing the :djadmin:`shell` command allows adding extra functionality or
-pre-loading specific modules. To do this, create a new management command that subclasses
-``django.core.management.commands.shell.Command`` and overrides the existing
-``shell`` management command. For more details, refer to the guide on
+pre-loading specific modules. To do this, create a new management command that
+subclasses ``django.core.management.commands.shell.Command`` and overrides the
+existing ``shell`` management command. For more details, refer to the guide on
:ref:`overriding commands <overriding-commands>`.
.. _customizing-shell-auto-imports: