Skip to content

Commit

Permalink
The project was checked with Clippy.
Browse files Browse the repository at this point in the history
  • Loading branch information
awxkee committed Feb 1, 2025
1 parent 1d64ce6 commit 61de487
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -56,13 +56,13 @@
//! The two main types for storing images:
//! * [`ImageBuffer`] which holds statically typed image contents.
//! * [`DynamicImage`] which is an enum over the supported `ImageBuffer` formats
//! and supports conversions between them.
//! and supports conversions between them.
//!
//! As well as a few more specialized options:
//! * [`GenericImage`] trait for a mutable image buffer.
//! * [`GenericImageView`] trait for read only references to a `GenericImage`.
//! * [`flat`] module containing types for interoperability with generic channel
//! matrices and foreign interfaces.
//! matrices and foreign interfaces.
//!
//! [`GenericImageView`]: trait.GenericImageView.html
//! [`GenericImage`]: trait.GenericImage.html
Expand Down Expand Up @@ -328,7 +328,7 @@ mod utils;
macro_rules! insert_as_doc {
{ $content:expr } => {
#[allow(unused_doc_comments)]
#[doc = $content] extern { }
#[doc = $content] extern "Rust" { }
}
}

Expand Down

0 comments on commit 61de487

Please sign in to comment.