mirror of
https://github.com/rust-embedded/heapless.git
synced 2025-09-30 14:00:29 +00:00
Fix clippy::too_long_first_doc_paragraph
warnings
This commit is contained in:
parent
e3e07b796b
commit
31a68def9a
@ -587,7 +587,8 @@ pub struct OldestOrderedInner<'a, T, S: HistBufStorage<T> + ?Sized> {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/// Double ended iterator on the underlying buffer ordered from the oldest data
|
/// Double ended iterator on the underlying buffer ordered from the oldest data
|
||||||
/// to the newest
|
/// to the newest.
|
||||||
|
///
|
||||||
/// This type exists for backwards compatibility. It is always better to convert it to an [`OldestOrderedView`] with [`into_view`](OldestOrdered::into_view)
|
/// This type exists for backwards compatibility. It is always better to convert it to an [`OldestOrderedView`] with [`into_view`](OldestOrdered::into_view)
|
||||||
pub type OldestOrdered<'a, T, const N: usize> =
|
pub type OldestOrdered<'a, T, const N: usize> =
|
||||||
OldestOrderedInner<'a, T, OwnedHistBufStorage<T, N>>;
|
OldestOrderedInner<'a, T, OwnedHistBufStorage<T, N>>;
|
||||||
|
@ -140,7 +140,7 @@
|
|||||||
),
|
),
|
||||||
feature(integer_atomics)
|
feature(integer_atomics)
|
||||||
)]
|
)]
|
||||||
#![warn(clippy::use_self)]
|
#![warn(clippy::use_self, clippy::too_long_first_doc_paragraph)]
|
||||||
|
|
||||||
pub use binary_heap::BinaryHeap;
|
pub use binary_heap::BinaryHeap;
|
||||||
pub use deque::Deque;
|
pub use deque::Deque;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user