From eef1a89df0e95a003ea750270ad53ec0c21fd69c Mon Sep 17 00:00:00 2001 From: acdenisSK Date: Tue, 7 Aug 2018 20:14:54 +0200 Subject: Reword `ArgError`'s docs a little --- src/framework/standard/args.rs | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'src/framework') diff --git a/src/framework/standard/args.rs b/src/framework/standard/args.rs index e0a83ee..b4380bb 100644 --- a/src/framework/standard/args.rs +++ b/src/framework/standard/args.rs @@ -7,10 +7,9 @@ use std::{ /// Defines how an operation on an `Args` method failed. #[derive(Debug)] pub enum Error { - /// "END-OF-STRING", more precisely, there isn't anything to parse anymore. + /// "END-OF-STRING". There's nothing to parse anymore. Eos, - /// A parsing operation failed; the error in it can be of any returned from the `FromStr` - /// trait. + /// The parsing operation failed; the error can be anything returned from the `FromStr` trait. Parse(E), } -- cgit v1.2.3