From 2de328a33bd982bcb451a16d8fddea2210fe6731 Mon Sep 17 00:00:00 2001 From: Tobias Kunze Date: Mon, 24 Oct 2016 23:22:51 +0200 Subject: [PATCH] Minor edits in ticketouput docs (#285) --- src/pretix/base/ticketoutput.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/pretix/base/ticketoutput.py b/src/pretix/base/ticketoutput.py index 70ff65c430..19ecf87685 100644 --- a/src/pretix/base/ticketoutput.py +++ b/src/pretix/base/ticketoutput.py @@ -39,9 +39,8 @@ class BaseTicketOutput: @property def verbose_name(self) -> str: """ - A human-readable name for this ticket output. This should - be short but self-explaining. Good examples include 'PDF tickets' - and 'Passbook'. + A human-readable name for this ticket output. This should be short but + self-explanatory. Good examples include 'PDF tickets' and 'Passbook'. """ raise NotImplementedError() # NOQA @@ -50,7 +49,7 @@ class BaseTicketOutput: """ A short and unique identifier for this ticket output. This should only contain lowercase letters and in most - cases will be the same as your packagename. + cases will be the same as your package name. """ raise NotImplementedError() # NOQA @@ -111,6 +110,7 @@ class BaseTicketOutput: @property def download_button_icon(self) -> str: """ - The name of the icon on the download button in the frontend + The name of the FontAwesome icon on the download button in the frontend + (without the fa- prefix). """ return None