Skip to content

Commit

Permalink
chore: clippy fixes (#2365)
Browse files Browse the repository at this point in the history
  • Loading branch information
TomAFrench authored Aug 18, 2023
1 parent 2c5b35d commit abba770
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion crates/lsp/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -520,7 +520,7 @@ fn on_did_save_text_document(
}

// We need to refresh lenses when we compile since that's the only time they can be accurately reflected
let _ = state.client.code_lens_refresh(());
std::mem::drop(state.client.code_lens_refresh(()));

let _ = state.client.publish_diagnostics(PublishDiagnosticsParams {
uri: params.text_document.uri,
Expand Down
3 changes: 2 additions & 1 deletion crates/noirc_evaluator/src/brillig/brillig_ir/debug_show.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
///! This module contains functions for producing a higher level view disassembler of Brillig.
//! This module contains functions for producing a higher level view disassembler of Brillig.
use super::BrilligBinaryOp;
use crate::brillig::brillig_ir::{ReservedRegisters, BRILLIG_MEMORY_ADDRESSING_BIT_SIZE};
use acvm::acir::brillig::{
Expand Down

0 comments on commit abba770

Please sign in to comment.