opcodes: Fix whitespace
Fix indentation of macro code and remove unnecessary line of whitespace.
This commit is contained in:
parent
caf53d755d
commit
dfd9384d14
|
@ -51,10 +51,10 @@ macro_rules! all_opcodes {
|
|||
/// constants are guaranteed to begin with OP_.
|
||||
pub mod all {
|
||||
use super::All;
|
||||
$(
|
||||
#[doc = $doc]
|
||||
pub const $op: All = All { code: $val};
|
||||
)*
|
||||
$(
|
||||
#[doc = $doc]
|
||||
pub const $op: All = All { code: $val};
|
||||
)*
|
||||
}
|
||||
|
||||
impl fmt::Display for All {
|
||||
|
@ -66,7 +66,6 @@ macro_rules! all_opcodes {
|
|||
}
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue