From 9b44d9d4517859e4c3e3f3fb3db404cac80434a5 Mon Sep 17 00:00:00 2001 From: Thomas Steen Rasmussen Date: Mon, 31 Jul 2017 18:28:13 +0200 Subject: [PATCH] fix a typo --- src/program/models.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/program/models.py b/src/program/models.py index ddbed2c9..82a11c59 100644 --- a/src/program/models.py +++ b/src/program/models.py @@ -185,7 +185,7 @@ class SpeakerProposal(UserSubmittedModel): ) submission_notes = models.TextField( - help_text='Private notes for the event. Only visible to the submitting user and the BornHack organisers.', + help_text='Private notes for this speaker. Only visible to the submitting user and the BornHack organisers.', blank=True ) @@ -251,7 +251,7 @@ class EventProposal(UserSubmittedModel): ) submission_notes = models.TextField( - help_text='Private notes for the event. Only visible to the submitting user and the BornHack organisers.', + help_text='Private notes for this event. Only visible to the submitting user and the BornHack organisers.', blank=True )