This commit is contained in:
Grzegorz Dziadkiewicz 2025-01-12 15:56:07 +01:00
parent d8babf9a53
commit 2e29a61afa
No known key found for this signature in database
GPG key ID: D93C27C4A6448C3D
2 changed files with 2 additions and 2 deletions

View file

@ -55,7 +55,7 @@ impl PositiveNonzeroInteger {
// Don't change this line
let x: i64 = s.parse()?;
// Don't change this line
Self::new(x)?
Ok(Self::new(x)?)
}
}

View file

@ -57,7 +57,7 @@ impl PositiveNonzeroInteger {
// Don't change this line
let x: i64 = s.parse()?;
// Don't change this line
Self::new(x)?
Ok(Self::new(x)?)
}
}