1
0
mirror of https://github.com/rust-lang/rustlings.git synced 2025-08-10 22:42:13 +02:00

Merge pull request #1607 from softarn/main

chore(errors4): improved comment
This commit is contained in:
liv
2023-08-01 10:49:55 +02:00
committed by GitHub

View File

@@ -16,7 +16,7 @@ enum CreationError {
impl PositiveNonzeroInteger { impl PositiveNonzeroInteger {
fn new(value: i64) -> Result<PositiveNonzeroInteger, CreationError> { fn new(value: i64) -> Result<PositiveNonzeroInteger, CreationError> {
// Hmm...? Why is this only returning an Ok value? // Hmm... Why is this always returning an Ok value?
Ok(PositiveNonzeroInteger(value as u64)) Ok(PositiveNonzeroInteger(value as u64))
} }
} }