Skip to content

Commit

Permalink
Address clippy lints.
Browse files Browse the repository at this point in the history
  • Loading branch information
azriel91 committed Jan 29, 2024
1 parent 6119b61 commit f739106
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions crate/rt_model_native/src/output/cli_md_presenter.rs
Original file line number Diff line number Diff line change
Expand Up @@ -220,15 +220,15 @@ where
Ok(())
}

async fn list_bullet_write(self: &mut Self, style_white: &Style) -> Result<(), std::io::Error> {
async fn list_bullet_write(&mut self, style_white: &Style) -> Result<(), std::io::Error> {
self.colorize_maybe("*", style_white).await?;
self.output.writer.write_all(b" ").await?;

Ok(())
}

async fn list_number_write(
self: &mut Self,
&mut self,
style_white: &Style,
index: usize,
number_column_count: usize,
Expand Down

0 comments on commit f739106

Please sign in to comment.