diff options
| author | acdenisSK <[email protected]> | 2018-08-07 21:17:52 +0200 |
|---|---|---|
| committer | acdenisSK <[email protected]> | 2018-08-07 21:17:52 +0200 |
| commit | 1973b8947a8de6774b7432f9a6f35c5a33ec5bd7 (patch) | |
| tree | 45211f3dca7f8e766b7eb2ef341913e96d312215 /src/framework | |
| parent | Capitalise i (diff) | |
| download | serenity-1973b8947a8de6774b7432f9a6f35c5a33ec5bd7.tar.xz serenity-1973b8947a8de6774b7432f9a6f35c5a33ec5bd7.zip | |
Typo
Diffstat (limited to 'src/framework')
| -rw-r--r-- | src/framework/standard/args.rs | 2 |
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 { |