1
0
mirror of https://github.com/rust-lang/rustlings.git synced 2024-11-21 17:56:35 +02:00

Switch comment style to //

This commit is contained in:
Antoine Dupuis 2024-11-14 09:14:40 +01:00
parent d5cae8ff59
commit fc0cd8f0f8

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)