We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 60d9109 commit ccdcb3aCopy full SHA for ccdcb3a
src/defaults/mod.rs
@@ -63,7 +63,7 @@ defaults! {
63
/// passwd_timeout and timestamp_timeout.
64
fn fractional_minutes(input: &str) -> Option<i64> {
65
if let Some((integral, fractional)) = input.split_once('.') {
66
- // - 'input' is maximally 18 chacters, making fractional.len() at most 17;
+ // - 'input' is maximally 18 characters, making fractional.len() at most 17;
67
// 1e17 < 2**63, so the definition of 'shift' will not overflow.
68
// - for the same reason, if both parses in the definition of 'seconds' succeed,
69
// we will have constructed an integer < 1e17.
0 commit comments