rename boot_delay to boot-delay for consistency

This commit is contained in:
Konstantin Stepanov 2015-07-06 00:58:46 +03:00
parent a419a1618e
commit b557aa1df5

View File

@ -13,7 +13,7 @@ fn main() {
let delay = match env::args().nth(1).and_then(|s| s.parse::<f32>().ok()) {
Some(d) => 60.0 * d,
None => {
println!("Usage: boot_delay <minutes>");
println!("Usage: boot-delay <minutes>");
return;
}
};