summaryrefslogtreecommitdiffstats
path: root/src/lib.rs
diff options
context:
space:
mode:
authorpierresy <pierre-henri.symoneaux@alcatel-lucent.com>2016-01-14 21:09:37 +0100
committerpierresy <pierre-henri.symoneaux@alcatel-lucent.com>2016-01-14 21:09:37 +0100
commit7ac4cf44b5b41ba20d31dcb52ea69261ca60851d (patch)
tree6edf6139d568fbfa6836be485318b107764943b7 /src/lib.rs
parent45d77e82ab32622a2b06264ae660bd73edc6731d (diff)
Changed token for row style
to FlatArrow (`=>`) in macro syntax
Diffstat (limited to 'src/lib.rs')
-rw-r--r--src/lib.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib.rs b/src/lib.rs
index 20b2389..7c67b72 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -418,7 +418,7 @@ impl <'a, T, E> Slice<'a, E> for T where T: AsRef<TableSlice<'a>>, [Row]: Index<
/// # #[macro_use] extern crate prettytable;
/// # fn main() {
/// let tab = table!([FrByl:"Element1", Fgc:"Element2", "Element3"],
-/// [FrBy -> 1, 2, 3],
+/// [FrBy => 1, 2, 3],
/// ["A", "B", "C"]
/// );
/// # drop(tab);