From 8ca26fe64898a373a6bbdf4a81cd13f6fb60d790 Mon Sep 17 00:00:00 2001 From: Taylor Bockman Date: Mon, 18 Dec 2017 15:24:21 -0800 Subject: [PATCH] lol --- src/parser.rs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) 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 { } - }