mirror of
https://github.com/notohh/rustlings.git
synced 2025-08-03 10:40:04 -04:00
Fix Display for Exercise
This commit is contained in:
parent
44824718b2
commit
9b0eeb815a
1 changed files with 1 additions and 1 deletions
|
@ -117,7 +117,7 @@ impl Exercise {
|
||||||
|
|
||||||
impl Display for Exercise {
|
impl Display for Exercise {
|
||||||
fn fmt(&self, f: &mut Formatter) -> fmt::Result {
|
fn fmt(&self, f: &mut Formatter) -> fmt::Result {
|
||||||
self.path.fmt(f)
|
Display::fmt(&self.path.display(), f)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue