Skip to content

Commit

Permalink
Merge pull request #137 from django-commons/develop
Browse files Browse the repository at this point in the history
fix a few howto doc typos
  • Loading branch information
bckohan authored Nov 5, 2024
2 parents 85fa56f + 9bec4cf commit 1f1c355
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions doc/source/howto.rst
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ like have multiple subcommands you can define any number of functions decorated

.. code-block:: python
from django_typer.management importTyperCommand, command
from django_typer.management import TyperCommand, command
class Command(TyperCommand):
Expand Down Expand Up @@ -590,8 +590,8 @@ This provides a common hook for configuring rich_ that you can control on a per-
"theme": None, # predefined themes
"word_wrap": False, # default is False
"show_locals": True, # rich default is False, but we turn this on
"locals_max_length": # default is 10
"locals_max_string": # default is 80
"locals_max_length": 10 # default is 10
"locals_max_string": 80 # default is 80
"locals_hide_dunder": True, # default is True
"locals_hide_sunder": False, # default is None
"indent_guides": True, # default is True
Expand Down

0 comments on commit 1f1c355

Please sign in to comment.