Skip to content

Commit 0011336

Browse files
committed
Auto merge of #559 - waywardmonkeys:fix-unbalanced-backticks, r=cuviper
Fix unbalanced backticks in doc comments.
2 parents a69af93 + f86adc6 commit 0011336

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/map.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4003,7 +4003,7 @@ impl<'a, K, V, S, A: Allocator> VacantEntry<'a, K, V, S, A> {
40034003
}
40044004

40054005
/// Sets the value of the entry with the [`VacantEntry`]'s key,
4006-
/// and returns an [`OccupiedEntry`]`.
4006+
/// and returns an [`OccupiedEntry`].
40074007
///
40084008
/// # Examples
40094009
///
@@ -4303,7 +4303,7 @@ impl<'a, 'b, K, Q: ?Sized, V, S, A: Allocator> VacantEntryRef<'a, 'b, K, Q, V, S
43034303
}
43044304

43054305
/// Sets the value of the entry with the [`VacantEntryRef`]'s key,
4306-
/// and returns an [`OccupiedEntry`]`.
4306+
/// and returns an [`OccupiedEntry`].
43074307
///
43084308
/// # Examples
43094309
///

src/raw/mod.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1819,7 +1819,7 @@ impl RawTableInner {
18191819
/// Attempt to write data at the `index` returned by this function when the table is
18201820
/// less than the group width and if there was not at least one empty or deleted bucket in
18211821
/// the table will cause immediate [`undefined behavior`]. This is because in this case the
1822-
/// function will return `self.bucket_mask + 1` as an index due to the trailing [`EMPTY]
1822+
/// function will return `self.bucket_mask + 1` as an index due to the trailing [`EMPTY`]
18231823
/// control bytes outside the table range.
18241824
///
18251825
/// The caller must independently increase the `items` field of the table, and also,
@@ -1873,7 +1873,7 @@ impl RawTableInner {
18731873
/// Attempt to write data at the [`InsertSlot`] returned by this function when the table is
18741874
/// less than the group width and if there was not at least one empty or deleted bucket in
18751875
/// the table will cause immediate [`undefined behavior`]. This is because in this case the
1876-
/// function will return `self.bucket_mask + 1` as an index due to the trailing [`EMPTY]
1876+
/// function will return `self.bucket_mask + 1` as an index due to the trailing [`EMPTY`]
18771877
/// control bytes outside the table range.
18781878
///
18791879
/// [`undefined behavior`]: https://doc.rust-lang.org/reference/behavior-considered-undefined.html

0 commit comments

Comments
 (0)