Skip to content

Commit 9f24e48

Browse files
committed
Auto merge of #537 - overlookmotel:fix-docs2, r=Amanieu
Fix links in docs Fix a couple of links in docs.
2 parents 4c824c5 + 368cc41 commit 9f24e48

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/raw/mod.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1932,7 +1932,7 @@ impl RawTableInner {
19321932
/// function with only `FULL` buckets' indices and return the `index` of the found
19331933
/// element (as `Ok(index)`). If the element is not found and there is at least 1
19341934
/// empty or deleted [`Bucket`] in the table, the function is guaranteed to return
1935-
/// [InsertSlot] with an index in the range `0..self.buckets()`, but in any case,
1935+
/// [`InsertSlot`] with an index in the range `0..self.buckets()`, but in any case,
19361936
/// if this function returns [`InsertSlot`], it will contain an index in the range
19371937
/// `0..=self.buckets()`.
19381938
///
@@ -1944,7 +1944,7 @@ impl RawTableInner {
19441944
/// Attempt to write data at the [`InsertSlot`] returned by this function when the table is
19451945
/// less than the group width and if there was not at least one empty or deleted bucket in
19461946
/// the table will cause immediate [`undefined behavior`]. This is because in this case the
1947-
/// function will return `self.bucket_mask + 1` as an index due to the trailing [`EMPTY]
1947+
/// function will return `self.bucket_mask + 1` as an index due to the trailing [`EMPTY`]
19481948
/// control bytes outside the table range.
19491949
///
19501950
/// [`undefined behavior`]: https://doc.rust-lang.org/reference/behavior-considered-undefined.html

0 commit comments

Comments
 (0)