Formatting fixes

This commit is contained in:
Jonathan Kingston 2018-11-24 16:13:58 +00:00
parent b74e8e5bc1
commit 460681b5ec
1 changed files with 5 additions and 5 deletions

View File

@ -68,11 +68,11 @@ pub enum Bool {
impl From<bool> for Bool { impl From<bool> for Bool {
fn from(v: bool) -> Self { fn from(v: bool) -> Self {
if (v) { if v {
Bool::True Bool::True
} else { } else {
Bool::False Bool::False
} }
} }
} }