summaryrefslogtreecommitdiff
path: root/solutions/13_error_handling
diff options
context:
space:
mode:
authorAntoine Dupuis <antoine.dupuis@datadoghq.com>2024-11-14 09:14:40 +0100
committerAntoine Dupuis <antoine.dupuis@datadoghq.com>2024-11-14 09:14:40 +0100
commitfc0cd8f0f88a03b7fdb69a6ba668b8479bd3eddd (patch)
treeec25a07f38eb09183f6eedc928dabb24d02bdf28 /solutions/13_error_handling
parentd5cae8ff597ab85d817d3abb6f30159f1823a0f2 (diff)
Switch comment style to //
Diffstat (limited to 'solutions/13_error_handling')
-rw-r--r--solutions/13_error_handling/errors6.rs18
1 files changed, 9 insertions, 9 deletions
diff --git a/solutions/13_error_handling/errors6.rs b/solutions/13_error_handling/errors6.rs
index 7bad200..ce18073 100644
--- a/solutions/13_error_handling/errors6.rs
+++ b/solutions/13_error_handling/errors6.rs
@@ -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)