summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorpierresy <pierre-henri.symoneaux@alcatel-lucent.com>2015-06-01 16:34:59 +0200
committerpierresy <pierre-henri.symoneaux@alcatel-lucent.com>2015-06-01 16:34:59 +0200
commitdd0bbaa788c9446bf694f0d8496a9af877a492ab (patch)
tree51e723abc1c49d1e51df55048020a3f7f4adec05 /src
parentceabe1d41bb8a273b4c1fd7213766cc74f239de9 (diff)
Fixed typo in a panic message
Diffstat (limited to 'src')
-rw-r--r--src/lib.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lib.rs b/src/lib.rs
index a5c11fe..ff9094e 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -238,7 +238,7 @@ macro_rules! table {
let mut tab = table!([$($title), *]);
$(
if let Err(e) = tab.add_row(row![$($key), *]) {
- panic!("Cannot create table from : {}", e);
+ panic!("Cannot create table : {}", e);
}
)*
tab