mirror of
https://github.com/sunface/rust-by-practice.git
synced 2025-06-23 12:39:42 +00:00
fix typo: in generics-traits/traits, change the name of variable _this_is_true
to its intended name of _this_is_false
.
This commit is contained in:
@ -143,7 +143,7 @@ fn main() {
|
||||
|
||||
println!("One second looks like: {:?}", _one_second);
|
||||
let _this_is_true = (_one_second == _one_second);
|
||||
let _this_is_true = (_one_second > _one_second);
|
||||
let _this_is_false = (_one_second > _one_second);
|
||||
|
||||
let foot = Inches(12);
|
||||
|
||||
|
Reference in New Issue
Block a user