From 9556bf4d665702c9133f3329196ba9a4725c8256 Mon Sep 17 00:00:00 2001 From: Amanieu d'Antras Date: Thu, 19 Oct 2023 17:18:09 +0100 Subject: [PATCH] Fix rustdoc warnings --- src/table.rs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/table.rs b/src/table.rs index 239b52b9b..bfb5dd989 100644 --- a/src/table.rs +++ b/src/table.rs @@ -838,6 +838,8 @@ where /// or the iteration short-circuits, then the remaining elements will be retained. /// Use [`retain()`] with a negated predicate if you do not need the returned iterator. /// + /// [`retain()`]: HashTable::retain + /// /// # Examples /// /// ``` @@ -951,7 +953,7 @@ where /// Returns an array of length `N` with the results of each query. `None` will be returned if /// any of the keys are missing. /// - /// For a safe alternative see [`get_many_mut`](`HashMap::get_many_mut`). + /// For a safe alternative see [`get_many_mut`](`HashTable::get_many_mut`). /// /// # Safety ///