Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix a few howto doc typos #137

Merged
merged 1 commit into from
Nov 5, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading