Skip to content

Commit

Permalink
Merge pull request #108 from tertsdiepraam/fix-doc-link-to-vecdeque
Browse files Browse the repository at this point in the history
`docs`: fix link to `VecDeque`
  • Loading branch information
jdonszelmann authored Jun 8, 2023
2 parents 8bb86ac + 4076629 commit d6665dd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/with_alloc/vecdeque.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ use alloc::collections::VecDeque;
use core::ops::{Deref, DerefMut, Index, IndexMut};

/// A growable ringbuffer. Once capacity is reached, the size is doubled.
/// Wrapper of the built-in [`VecDeque`](std::collections::VecDeque) struct
/// Wrapper of the built-in [`VecDeque`] struct.
///
/// The reason this is a wrapper, is that we want `RingBuffers` to implement `Index<isize>`,
/// which we cannot do for remote types like `VecDeque`
Expand Down

1 comment on commit d6665dd

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.