diff --git a/aleksis/apps/hjelp/models.py b/aleksis/apps/hjelp/models.py
index 587765425a72277fa374060c9ea29bcd7eb9b475..ccb4f436a54850bf2624dfa51ce0c7dcfe59ea71 100644
--- a/aleksis/apps/hjelp/models.py
+++ b/aleksis/apps/hjelp/models.py
@@ -35,9 +35,9 @@ class FAQQuestion(models.Model):
 
     show = models.BooleanField(verbose_name=_("Published"), default=False)
     answer_text = models.TextField(blank=True,
-                                   help_text=_("You can use HTML syntax in the FAQ-answers!<br> Because of "
-                                               "our CSS framework all <strong>&lt;ul&gt;</strong>-Elements "
-                                               "must have the CSS class <em>browser-default</em>!"),
+                                   help_text=_("You can use HTML syntax in the FAQ answers. <br> Because of "
+                                               "our CSS framework all <strong>&lt;ul&gt;</strong> elements "
+                                               "must have the CSS class <em>browser-default</em>."),
                                    verbose_name=_("Answer"))
 
     section = models.ForeignKey(FAQSection, on_delete=models.CASCADE, blank=True, related_name="questions",