mirror of
https://github.com/Hopiu/django-cachalot.git
synced 2026-05-09 21:24:44 +00:00
Typos in some docstrings.
This commit is contained in:
parent
98a3db4a3b
commit
abee1be5fb
1 changed files with 6 additions and 6 deletions
|
|
@ -26,9 +26,9 @@ def invalidate_tables(tables, cache_alias=None, db_alias=None):
|
|||
:arg tables: SQL tables names
|
||||
:type tables: iterable of strings
|
||||
:arg cache_alias: Alias from the Django ``CACHES`` setting
|
||||
:type cache_alias: string or None
|
||||
:type cache_alias: string or NoneType
|
||||
:arg db_alias: Alias from the Django ``DATABASES`` setting
|
||||
:type db_alias: string or None
|
||||
:type db_alias: string or NoneType
|
||||
:returns: Nothing
|
||||
:rtype: NoneType
|
||||
"""
|
||||
|
|
@ -49,9 +49,9 @@ def invalidate_models(models, cache_alias=None, db_alias=None):
|
|||
:arg models: Django models
|
||||
:type models: iterable of ``django.db.models.Model`` subclasses
|
||||
:arg cache_alias: Alias from the Django ``CACHES`` setting
|
||||
:type cache_alias: string or None
|
||||
:type cache_alias: string or NoneType
|
||||
:arg db_alias: Alias from the Django ``DATABASES`` setting
|
||||
:type db_alias: string or None
|
||||
:type db_alias: string or NoneType
|
||||
:returns: Nothing
|
||||
:rtype: NoneType
|
||||
"""
|
||||
|
|
@ -71,9 +71,9 @@ def invalidate_all(cache_alias=None, db_alias=None):
|
|||
on this database, otherwise queries from all databases are cleared.
|
||||
|
||||
:arg cache_alias: Alias from the Django ``CACHES`` setting
|
||||
:type cache_alias: string or None
|
||||
:type cache_alias: string or NoneType
|
||||
:arg db_alias: Alias from the Django ``DATABASES`` setting
|
||||
:type cache_alias: string or None
|
||||
:type cache_alias: string or NoneType
|
||||
:returns: Nothing
|
||||
:rtype: NoneType
|
||||
"""
|
||||
|
|
|
|||
Loading…
Reference in a new issue