Fix formatting

This commit is contained in:
Peter Fürstenau 2018-12-28 20:52:46 +01:00
parent 6ee0e22204
commit 8be7050b74

View file

@ -19,7 +19,7 @@ fn some_other_func(a: Option<u32>) -> Option<u32> {
if a.is_none() {
return None;
} else {
return Some(0);
return Some(0);
}
unreachable!()
}