1
0
Fork 0
mirror of https://github.com/notohh/rustlings.git synced 2025-11-08 05:48:11 -05:00

fix(traits1): rename test functions to snake case ()

Co-authored-by: zhangshaozhi <zhangshaozhi@ZhangshaozhideMacBook-Pro.local>
This commit is contained in:
xuesong 2021-10-18 19:57:12 +08:00 committed by GitHub
commit 1663a16ead
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 3 deletions
exercises/advanced_errors

View file

@ -64,7 +64,6 @@ impl Display for ParseClimateError {
match self {
NoCity => write!(f, "no city name"),
ParseFloat(e) => write!(f, "error parsing temperature: {}", e),
_ => write!(f, "unhandled error!"),
}
}
}