Fix formatting. (#738)

This commit is contained in:
Tomasz Drwięga
2021-02-17 18:39:04 +01:00
committed by Bastian Köcher
parent 90113303f1
commit b806fb7756
+2 -2
View File
@@ -83,7 +83,7 @@ macro_rules! bail_on_error {
match $result {
(client, Ok(result)) => (client, result),
(client, Err(error)) => return (client, Err(error)),
}
}
};
}
@@ -94,7 +94,7 @@ macro_rules! bail_on_arg_error {
match $result {
Ok(result) => result,
Err(error) => return ($client, Err(error)),
}
}
};
}