summaryrefslogtreecommitdiffstats
path: root/src/format.rs
diff options
context:
space:
mode:
authorPierre-Henri Symoneaux <phsym@users.noreply.github.com>2016-02-15 09:53:40 +0100
committerPierre-Henri Symoneaux <phsym@users.noreply.github.com>2016-02-15 09:53:40 +0100
commit9bb1b4add459ce08526792c1a9fd7c37a0553043 (patch)
tree892cda3e593e601c85b16934b37999388c2ef5c7 /src/format.rs
parentaad9884f9e8b34cf49d2bde042a978dff36bcb92 (diff)
parent2e97afa91ea1d790f00aa832f4471a4fb1bd53cc (diff)
Merge pull request #23 from phsym/detect_tty
Detect if stdout is a tty, and don't colorize table if it's not
Diffstat (limited to 'src/format.rs')
-rw-r--r--src/format.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/format.rs b/src/format.rs
index 030242b..6a973aa 100644
--- a/src/format.rs
+++ b/src/format.rs
@@ -197,7 +197,7 @@ impl Default for TableFormat {
}
}
-/// A builder to create a `Table Format`
+/// A builder to create a `TableFormat`
pub struct FormatBuilder {
format: Box<TableFormat>
}