From 693f296ebabd89c95180ffbb1aec6deb6dc101f6 Mon Sep 17 00:00:00 2001 From: "Brian S. Stephan" Date: Sat, 4 Feb 2017 08:25:02 -0600 Subject: [PATCH] choices: trivial comment correction --- dr_botzo/choices/models.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dr_botzo/choices/models.py b/dr_botzo/choices/models.py index a7d25a2..fcc7bfe 100644 --- a/dr_botzo/choices/models.py +++ b/dr_botzo/choices/models.py @@ -5,7 +5,7 @@ from django.db import models class ChoiceSet(models.Model): - """Define facts.""" + """Define collections of possible choices.""" name = models.CharField(max_length=20) choices = models.TextField()