aboutsummaryrefslogtreecommitdiff
path: root/src/util/linked_list.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/util/linked_list.rs')
-rw-r--r--src/util/linked_list.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/util/linked_list.rs b/src/util/linked_list.rs
index dd00e14..480ea09 100644
--- a/src/util/linked_list.rs
+++ b/src/util/linked_list.rs
@@ -77,7 +77,7 @@ pub(crate) struct Pointers<T> {
/// #[repr(C)].
///
/// See this link for more information:
-/// https://github.com/rust-lang/rust/pull/82834
+/// <https://github.com/rust-lang/rust/pull/82834>
#[repr(C)]
struct PointersInner<T> {
/// The previous node in the list. null if there is no previous node.
@@ -93,7 +93,7 @@ struct PointersInner<T> {
next: Option<NonNull<T>>,
/// This type is !Unpin due to the heuristic from:
- /// https://github.com/rust-lang/rust/pull/82834
+ /// <https://github.com/rust-lang/rust/pull/82834>
_pin: PhantomPinned,
}