From 61de487accdcda409377fda87a0615584777705d Mon Sep 17 00:00:00 2001 From: Radzivon Bartoshyk Date: Sat, 1 Feb 2025 16:06:26 +0000 Subject: [PATCH] The project was checked with Clippy. --- src/lib.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/lib.rs b/src/lib.rs index 144dcc4d39..b691d10a82 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -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 @@ -328,7 +328,7 @@ mod utils; macro_rules! insert_as_doc { { $content:expr } => { #[allow(unused_doc_comments)] - #[doc = $content] extern { } + #[doc = $content] extern "Rust" { } } }