diff options
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 { |