diff options
author | Joe Wilm <joe@jwilm.com> | 2016-09-17 17:03:47 -0700 |
---|---|---|
committer | Joe Wilm <joe@jwilm.com> | 2016-09-17 17:03:47 -0700 |
commit | 02301e8f2a9a4641ab893c48c0b0d3ee231d4e6b (patch) | |
tree | db27d6a487c32cce0cd9d75a21f61c285104af57 /examples/parselog.rs | |
parent | 917080a5c27b3310daab135f9bfdbc531cb54186 (diff) | |
download | r-alacritty-vte-02301e8f2a9a4641ab893c48c0b0d3ee231d4e6b.tar.gz r-alacritty-vte-02301e8f2a9a4641ab893c48c0b0d3ee231d4e6b.tar.bz2 r-alacritty-vte-02301e8f2a9a4641ab893c48c0b0d3ee231d4e6b.zip |
Fix import in example
Diffstat (limited to 'examples/parselog.rs')
-rw-r--r-- | examples/parselog.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/parselog.rs b/examples/parselog.rs index 5c1836b..e04fd1e 100644 --- a/examples/parselog.rs +++ b/examples/parselog.rs @@ -1,5 +1,5 @@ //! Parse input from stdin and log actions on stdout -extern crate vtparse; +extern crate vte; use std::io::{self, Read}; |