diff options
| author | ache <ache@ache.one> | 2026-08-16 23:41:01 +0200 |
|---|---|---|
| committer | ache <ache@ache.one> | 2026-08-16 23:41:01 +0200 |
| commit | 0c067f0c85cf54a001566b8542a809a916776b86 (patch) | |
| tree | 83f805fdaeadb984e290e00bf12c07e57165124e /src/main.rs | |
| parent | Add a real README (diff) | |
Legend is spelled in french xD
Diffstat (limited to 'src/main.rs')
| -rw-r--r-- | src/main.rs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/main.rs b/src/main.rs index 2ca6fc7..0d39604 100644 --- a/src/main.rs +++ b/src/main.rs @@ -13,7 +13,7 @@ mod stats; use args::Args; use ip::parse_ip; use pinger::{PingResult, spawn_ping}; -use print::{print_legende_line, print_ping_line, print_stats, print_status_line}; +use print::{print_legend_line, print_ping_line, print_stats, print_status_line}; use state::State; use stats::compute_stats; @@ -148,8 +148,8 @@ async fn main() { let mut states: Vec<State> = Vec::new(); let mut packet_id: u32 = 0; - if args.legende { - print_legende_line(); + if args.legend { + print_legend_line(); } if args.status { |