opcodes: Fix whitespace

Fix indentation of macro code and remove unnecessary line of whitespace.
This commit is contained in:
Tobin C. Harding 2023-07-26 14:43:56 +10:00
parent caf53d755d
commit dfd9384d14
No known key found for this signature in database
GPG Key ID: 40BF9E4C269D6607
1 changed files with 4 additions and 5 deletions

View File

@ -51,10 +51,10 @@ macro_rules! all_opcodes {
/// constants are guaranteed to begin with OP_. /// constants are guaranteed to begin with OP_.
pub mod all { pub mod all {
use super::All; use super::All;
$( $(
#[doc = $doc] #[doc = $doc]
pub const $op: All = All { code: $val}; pub const $op: All = All { code: $val};
)* )*
} }
impl fmt::Display for All { impl fmt::Display for All {
@ -66,7 +66,6 @@ macro_rules! all_opcodes {
} }
} }
} }
} }
} }