From 866b36f04ffaa097ce075bfd9fe5e91e99539641 Mon Sep 17 00:00:00 2001 From: acdenisSK Date: Tue, 7 Aug 2018 21:07:48 +0200 Subject: Capitalise i --- src/framework/standard/args.rs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src/framework') diff --git a/src/framework/standard/args.rs b/src/framework/standard/args.rs index 2d7be4d..c69679e 100644 --- a/src/framework/standard/args.rs +++ b/src/framework/standard/args.rs @@ -206,7 +206,7 @@ impl<'a> Lexer<'a> { /// assert_eq!(args.single_quoted::().unwrap(), "Princess Zelda"); /// ``` /// -/// In case of a mistake, we can go back in time... er i mean, one step (or entirely): +/// In case of a mistake, we can go back in time... er I mean, one step (or entirely): /// /// ```rust /// use serenity::framework::standard::Args; @@ -216,8 +216,8 @@ impl<'a> Lexer<'a> { /// assert_eq!(args.single::().unwrap(), 4); /// /// // Oh wait, oops, meant to double the 4. -/// // But i won't able to access it now... -/// // oh wait, i can `rewind`. +/// // But I won't able to access it now... +/// // oh wait, I can `rewind`. /// args.rewind(); /// /// assert_eq!(args.single::().unwrap() * 2, 8); @@ -226,7 +226,7 @@ impl<'a> Lexer<'a> { /// assert_eq!(args.single::().unwrap() * 2, 4); /// /// // WAIT, NO. I wanted to concatenate them into a "42" string... -/// // Argh, what should i do now???? +/// // Argh, what should I do now???? /// // .... /// // oh, `restore` /// args.restore(); -- cgit v1.2.3