diff --git a/bookwyrm/views/status.py b/bookwyrm/views/status.py index 7670c2e8f..86e5fd6b3 100644 --- a/bookwyrm/views/status.py +++ b/bookwyrm/views/status.py @@ -345,7 +345,7 @@ def _wrapped(text): def _ends_with_punctuation(text): - """check if a line of text is wrapped""" + """check if a line of text ends with a punctuation glyph""" glyphs = [".", ",", ";", ":", "!", "?", "”", "’", '"', "»"] for glyph in glyphs: if text[-1] == glyph: