diff options
| author | Tim Graham <timograham@gmail.com> | 2015-07-31 07:33:38 -0400 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2015-07-31 07:33:38 -0400 |
| commit | 5d0961fdfc396e755e60d4fa986bab8f45d375f4 (patch) | |
| tree | e26474a5f008fc7a2e2a2aa78343a9c46cd1eac8 /docs | |
| parent | b792c4804b611369c3e146f1fd967d9c5bdea17f (diff) | |
Fixed #25202 -- Fixed typo in docs/topics/auth/customizing.txt
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/topics/auth/customizing.txt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/topics/auth/customizing.txt b/docs/topics/auth/customizing.txt index 289237be18..8b4da2048e 100644 --- a/docs/topics/auth/customizing.txt +++ b/docs/topics/auth/customizing.txt @@ -443,7 +443,7 @@ different User model. from django.db import models class Article(models.Model): - author = models.ForeignKey + author = models.ForeignKey( settings.AUTH_USER_MODEL, on_delete=models.CASCADE, ) |
