We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3f7efd5 commit c611ebaCopy full SHA for c611eba
1 file changed
src/core/option_local_signal.rs
@@ -233,14 +233,14 @@ impl<T> Deref for NoneGuard<T> {
233
}
234
235
236
-/// This implementation only exists so that we can create a None::<impl DerefMut>.
+/// This implementation only exists so that we can create a `None::<impl DerefMut>`.
237
impl<T> DerefMut for NoneGuard<T> {
238
fn deref_mut(&mut self) -> &mut Self::Target {
239
panic!("Attempted to mutably dereference a NoneGuard");
240
241
242
243
-/// This implementation only exists so that we can create a None::<impl UntrackableGuard>.
+/// This implementation only exists so that we can create a `None::<impl UntrackableGuard>`.
244
impl<T> UntrackableGuard for NoneGuard<T> {
245
fn untrack(&mut self) {
246
panic!("Attempted to untrack a NoneGuard");
0 commit comments