This commit is contained in:
Christoph J. Scherr 2023-05-22 10:51:04 +02:00
parent bacaeca6cc
commit aa839ed1e1
Signed by: PlexSheep
GPG Key ID: 25B4ACF7D88186CC
1 changed files with 1 additions and 1 deletions

View File

@ -125,7 +125,7 @@ pub fn proc_tup_num<T>(num: (T, T), args: Cli)
println!("({}, {}) (({:#x}, {:#x})", num.0, num.1, num.0, num.1);
}
else {
println!("result is ({}, {}) (({:#x}, {:#x})", num.0, num.1, num.0, num.1);
println!("result is ({}, {}) (({:#x}, {:#x}))", num.0, num.1, num.0, num.1);
}
}