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

docs: missing comma in 'Signals' codeblock #1132

Merged
merged 3 commits into from
May 2, 2023
Merged
Show file tree
Hide file tree
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
1 change: 1 addition & 0 deletions AUTHORS.rst
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@ Authors
- Hamish Downer
- Hans de Jong (`sult <https://github.com/sult>`_)
- Hanyin Zhang
- Héctor Durán (`hector97i <https://github.com/hector97i>`)
- Hernan Esteves (`sevetseh28 <https://github.com/sevetseh28>`_)
- Hielke Walinga (`hwalinga <https://github.com/hwalinga>`_)
- Hugo van Kemenade (`hugovk <https://github.com/hugovk>`_)
Expand Down
1 change: 1 addition & 0 deletions CHANGES.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ Changes
Unreleased
----------

- Fixed typos in the docs
- Added feature to evaluate ``history`` model permissions explicitly when
``SIMPLE_HISTORY_ENFORCE_HISTORY_MODEL_PERMISSIONS`` is set to ``True``
in ``settings`` (gh-1017).
Expand Down
2 changes: 1 addition & 1 deletion docs/signals.rst
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ To connect the signals to your callbacks, you can use the ``@receiver`` decorato
from django.dispatch import receiver
from simple_history.signals import (
pre_create_historical_record,
post_create_historical_record
post_create_historical_record,
pre_create_historical_m2m_records,
post_create_historical_m2m_records,
)
Expand Down