Skip to content

Commit de08089

Browse files
committed
rustfmt fix
1 parent 3c3f89f commit de08089

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

src/map.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2125,15 +2125,15 @@ impl<K, V, S, A: Allocator + Clone> HashMap<K, V, S, A> {
21252125

21262126
/// Returns a reference to the [`RawTable`] used underneath [`HashMap`].
21272127
/// This function is only available if the `raw` feature of the crate is enabled.
2128-
///
2128+
///
21292129
/// See [`raw_table_mut`] for more.
2130-
///
2130+
///
21312131
/// [`raw_table_mut`]: Self::raw_table_mut
21322132
#[cfg(feature = "raw")]
21332133
#[cfg_attr(feature = "inline-more", inline)]
21342134
pub fn raw_table(&self) -> &RawTable<(K, V), A> {
21352135
&self.table
2136-
}
2136+
}
21372137

21382138
/// Returns a mutable reference to the [`RawTable`] used underneath [`HashMap`].
21392139
/// This function is only available if the `raw` feature of the crate is enabled.

src/set.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1240,7 +1240,7 @@ where
12401240
#[cfg_attr(feature = "inline-more", inline)]
12411241
pub fn raw_table(&self) -> &RawTable<(T, ()), A> {
12421242
self.map.raw_table()
1243-
}
1243+
}
12441244

12451245
/// Returns a mutable reference to the [`RawTable`] used underneath [`HashSet`].
12461246
/// This function is only available if the `raw` feature of the crate is enabled.

0 commit comments

Comments
 (0)