From 8d8b6bad302fef95412cfb468e7f8e270684f4bd Mon Sep 17 00:00:00 2001 From: yeongkwang Date: Wed, 23 Mar 2022 14:05:49 +0900 Subject: [PATCH] Fix small typo --- docs/source/usage.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/source/usage.rst b/docs/source/usage.rst index d84c86d..3fd9f25 100644 --- a/docs/source/usage.rst +++ b/docs/source/usage.rst @@ -61,7 +61,7 @@ during the `register()` call. sku = models.CharField(max_length=20) version = models.CharField(max_length=5) product = models.CharField(max_length=50, verbose_name='Product Name') - history = AuditLogHistoryField() + history = AuditlogHistoryField() auditlog.register(MyModel, mapping_fields={'sku': 'Product No.', 'version': 'Product Revision'})