Skip to content

Commit

Permalink
fix: rust-doc (#974)
Browse files Browse the repository at this point in the history
Just minor fix
  • Loading branch information
reshmem authored Dec 6, 2023
1 parent 4346e0b commit b9e263a
Showing 1 changed file with 2 additions and 4 deletions.
6 changes: 2 additions & 4 deletions runner/src/decode.rs
Original file line number Diff line number Diff line change
Expand Up @@ -66,17 +66,15 @@ bitfield! {
///
/// let instruction = decode_instruction(0, 0x018B_80B3);
///
/// assert!(
/// instruction
/// == Instruction {
/// assert_eq!(instruction, Ok(Instruction {
/// op: Op::ADD,
/// args: Args {
/// rd: 1,
/// rs1: 23,
/// rs2: 24,
/// imm: 0,
/// }
/// }
/// })
/// );
/// ```
#[allow(clippy::too_many_lines)]
Expand Down

0 comments on commit b9e263a

Please sign in to comment.