Fixed #25202 -- Fixed typo in docs/topics/auth/customizing.txt

This commit is contained in:
Tim Graham 2015-07-31 07:33:38 -04:00
parent b792c4804b
commit 5d0961fdfc
1 changed files with 1 additions and 1 deletions

View File

@ -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,
)