Skip to content

Commit

Permalink
Fix latest clippy lints from Rust 1.83 (#656)
Browse files Browse the repository at this point in the history
  • Loading branch information
adamchalmers authored Nov 28, 2024
1 parent 4b9b19b commit 61cfc7a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion modeling-cmds/src/base64.rs
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ impl TryFrom<&str> for Base64Data {

struct Base64DataVisitor;

impl<'de> Visitor<'de> for Base64DataVisitor {
impl Visitor<'_> for Base64DataVisitor {
type Value = Base64Data;

fn expecting(&self, formatter: &mut fmt::Formatter) -> fmt::Result {
Expand Down
2 changes: 1 addition & 1 deletion unit-conversion-derive/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
/// Derive helpers for implementing unit conversions for enum types.
//! Derive helpers for implementing unit conversions for enum types.
#[macro_use]
extern crate quote;
Expand Down

0 comments on commit 61cfc7a

Please sign in to comment.