diff options
author | Valentin Popov <info@valentineus.link> | 2019-01-26 18:38:32 +0300 |
---|---|---|
committer | Valentin Popov <info@valentineus.link> | 2019-01-26 18:38:32 +0300 |
commit | ecbb303ce0d670a9b44110f070aca3746003ffd9 (patch) | |
tree | a9fac1d0721e7b30931d9a80a4ff6fe24917121e | |
parent | fb9c636fcb5274cce6682d476bb2269e03f546ba (diff) | |
download | bbb2json-ecbb303ce0d670a9b44110f070aca3746003ffd9.tar.xz bbb2json-ecbb303ce0d670a9b44110f070aca3746003ffd9.zip |
Sat, 26 Jan 2019 19:38:32 +0400
Signed-off-by: Valentin Popov <info@valentineus.link>
-rw-r--r-- | src/parser.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/parser.rs b/src/parser.rs index 1a8249b..e42ded4 100644 --- a/src/parser.rs +++ b/src/parser.rs @@ -10,7 +10,7 @@ pub struct ParserResult { pub meeting_name: String, } -pub fn qwerty(content: BufReader<File>) -> ParserResult { +pub fn parse(content: BufReader<File>) -> ParserResult { let parser = EventReader::new(content); let mut data = ParserResult { |