summaryrefslogtreecommitdiffstats
path: root/src/frontend/list.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/frontend/list.rs')
-rw-r--r--src/frontend/list.rs3
1 files changed, 3 insertions, 0 deletions
diff --git a/src/frontend/list.rs b/src/frontend/list.rs
index e870ab0..e4ed7d7 100644
--- a/src/frontend/list.rs
+++ b/src/frontend/list.rs
@@ -15,6 +15,9 @@ use librepology::v1::api::Api;
pub struct ListFrontend(Stdout);
+/// A Frontend that prints the data in a human-readable way but without ASCII-art.
+///
+/// It seperates the values with dashes ("-") for a slightly better reading experience.
impl ListFrontend {
pub fn new(stdout: Stdout) -> Self {
ListFrontend(stdout)