diff options
Diffstat (limited to 'src/framework')
| -rw-r--r-- | src/framework/standard/args.rs | 5 |
1 files changed, 2 insertions, 3 deletions
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<E: StdError> { - /// "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), } |