aboutsummaryrefslogtreecommitdiff
path: root/src/framework
diff options
context:
space:
mode:
authoracdenisSK <[email protected]>2018-08-07 21:07:48 +0200
committeracdenisSK <[email protected]>2018-08-07 21:07:48 +0200
commit866b36f04ffaa097ce075bfd9fe5e91e99539641 (patch)
tree62e86189efcd603412919e5c1d32439227cc75c3 /src/framework
parentRefactor docs in `Args` (diff)
downloadserenity-866b36f04ffaa097ce075bfd9fe5e91e99539641.tar.xz
serenity-866b36f04ffaa097ce075bfd9fe5e91e99539641.zip
Capitalise i
Diffstat (limited to 'src/framework')
-rw-r--r--src/framework/standard/args.rs8
1 files changed, 4 insertions, 4 deletions
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::<String>().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::<u32>().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::<u32>().unwrap() * 2, 8);
@@ -226,7 +226,7 @@ impl<'a> Lexer<'a> {
/// assert_eq!(args.single::<u32>().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();