Compare commits

..

2 commits

Author SHA1 Message Date
Antoine Dupuis
8e6cc90dde
Merge fc0cd8f0f8 into 38016cb2d6 2024-11-14 08:14:49 +00:00
Antoine Dupuis
fc0cd8f0f8 Switch comment style to // 2024-11-14 09:14:40 +01:00

View file

@ -29,15 +29,15 @@ impl ParsePosNonzeroError {
}
}
/// As an alternative solution, implementing the `From` trait allows for the
/// automatic conversion from a `ParseIntError` into a `ParsePosNonzeroError`
/// using the `?` operator, without the need to call `map_err`.
///
/// ```
/// let x: i64 = s.parse()?;
/// ```
///
/// Traits like `From` will be dealt with in later exercises.
// As an alternative solution, implementing the `From` trait allows for the
// automatic conversion from a `ParseIntError` into a `ParsePosNonzeroError`
// using the `?` operator, without the need to call `map_err`.
//
// ```
// let x: i64 = s.parse()?;
// ```
//
// Traits like `From` will be dealt with in later exercises.
impl From<ParseIntError> for ParsePosNonzeroError {
fn from(err: ParseIntError) -> Self {
ParsePosNonzeroError::ParseInt(err)