summaryrefslogtreecommitdiffstats
path: root/src/main.rs
diff options
context:
space:
mode:
authorMario Krehl <mario-krehl@gmx.de>2017-12-16 12:06:47 +0100
committerMario Krehl <mario-krehl@gmx.de>2017-12-16 12:06:47 +0100
commit83cc44aec65898440373c309284adbd7c2092106 (patch)
tree5e29037a5839d2e7255bbb63588b8a7f44debc7d /src/main.rs
parent4736031a1b46924ac0aff584c74b4fb957f9ff98 (diff)
Fix typos
Diffstat (limited to 'src/main.rs')
-rw-r--r--src/main.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.rs b/src/main.rs
index 56cf351..43d9a48 100644
--- a/src/main.rs
+++ b/src/main.rs
@@ -166,7 +166,7 @@ fn hash_map_iter(h : HashMap<&String, (&LogItem, Vec<(String, String)>)>, d_from
// save the timestamp for later
let timestamp = capture_groups["ts"]
.parse::<f64>()
- .chain_err(|| "Failed to parse the filestamp")?;
+ .chain_err(|| "Failed to parse the timestamp")?;
// ignore every entry not in the timerange
if (timestamp as i64) > d_from && (timestamp as i64) < d_to {