aboutsummaryrefslogtreecommitdiff
path: root/src/framework
diff options
context:
space:
mode:
authoracdenisSK <[email protected]>2018-08-07 21:17:52 +0200
committeracdenisSK <[email protected]>2018-08-07 21:17:52 +0200
commit1973b8947a8de6774b7432f9a6f35c5a33ec5bd7 (patch)
tree45211f3dca7f8e766b7eb2ef341913e96d312215 /src/framework
parentCapitalise i (diff)
downloadserenity-1973b8947a8de6774b7432f9a6f35c5a33ec5bd7.tar.xz
serenity-1973b8947a8de6774b7432f9a6f35c5a33ec5bd7.zip
Typo
Diffstat (limited to 'src/framework')
-rw-r--r--src/framework/standard/args.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/framework/standard/args.rs b/src/framework/standard/args.rs
index c69679e..f90875a 100644
--- a/src/framework/standard/args.rs
+++ b/src/framework/standard/args.rs
@@ -741,7 +741,7 @@ impl Args {
return s;
}
- let end = s.rfind('"').uwnrap();
+ let end = s.rfind('"').unwrap();
// If it got the quote at the start, then there's no closing quote.
if end == 0 {