Skip to content

Commit c611eba

Browse files
committed
Fix some doc comments
1 parent 3f7efd5 commit c611eba

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/core/option_local_signal.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -233,14 +233,14 @@ impl<T> Deref for NoneGuard<T> {
233233
}
234234
}
235235

236-
/// This implementation only exists so that we can create a None::<impl DerefMut>.
236+
/// This implementation only exists so that we can create a `None::<impl DerefMut>`.
237237
impl<T> DerefMut for NoneGuard<T> {
238238
fn deref_mut(&mut self) -> &mut Self::Target {
239239
panic!("Attempted to mutably dereference a NoneGuard");
240240
}
241241
}
242242

243-
/// This implementation only exists so that we can create a None::<impl UntrackableGuard>.
243+
/// This implementation only exists so that we can create a `None::<impl UntrackableGuard>`.
244244
impl<T> UntrackableGuard for NoneGuard<T> {
245245
fn untrack(&mut self) {
246246
panic!("Attempted to untrack a NoneGuard");

0 commit comments

Comments
 (0)