Skip to content

Commit

Permalink
Clippy 1.82 lints
Browse files Browse the repository at this point in the history
  • Loading branch information
Pat-Lafon committed Oct 17, 2024
1 parent 50c050f commit db06b23
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion brilirs/src/interp.rs
Original file line number Diff line number Diff line change
Expand Up @@ -780,7 +780,9 @@ impl<'a, T: std::io::Write> State<'a, T> {
}
}

/// The entrance point to the interpreter. It runs over a ```prog```:[`BBProgram`] starting at the "main" function with ```input_args``` as input. Print statements output to ```out``` which implements [`std::io::Write`]. You also need to include whether you want the interpreter to count the number of instructions run with ```profiling```. This information is outputted to [`std::io::stderr`]
/// The entrance point to the interpreter.
///
/// It runs over a ```prog```:[`BBProgram`] starting at the "main" function with ```input_args``` as input. Print statements output to ```out``` which implements [`std::io::Write`]. You also need to include whether you want the interpreter to count the number of instructions run with ```profiling```. This information is outputted to [`std::io::stderr`]
/// # Panics
/// This should not panic with normal use except if there is a bug or if you are using an unimplemented feature
/// # Errors
Expand Down

0 comments on commit db06b23

Please sign in to comment.