diff --git a/src/parser.rs b/src/parser.rs index bf4c0ee..e5e963b 100644 --- a/src/parser.rs +++ b/src/parser.rs @@ -27,7 +27,7 @@ pub enum CommandValue { pub struct Parser {} -/// TokenResult is a convenient way t package an entire command string. It is identified by it's associated +/// TokenResult is a convenient way to package an entire command string. It is identified by it's associated /// Token, and the arguments. /// /// Example: @@ -56,7 +56,6 @@ impl Parser { pub fn parse(s: &str) -> TokenResult { } - }