File tree 1 file changed +4
-4
lines changed
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -517,15 +517,15 @@ macro_rules! unreachable {
517
517
/// This allows your code to type-check, which is useful if you are prototyping or
518
518
/// implementing a trait that requires multiple methods which you don't plan of using all of.
519
519
///
520
- /// The difference between `unimplemented!` and [`todo!`](macro.todo.html) is that while `todo!`
520
+ /// The difference between `unimplemented!` and [`todo!`] is that while `todo!`
521
521
/// conveys an intent of implementing the functionality later and the message is "not yet
522
522
/// implemented", `unimplemented!` makes no such claims. Its message is "not implemented".
523
523
/// Also some IDEs will mark `todo!`s.
524
524
///
525
525
/// # Panics
526
526
///
527
- /// This will always [panic!](macro.panic.html) because `unimplemented!` is just a
528
- /// shorthand for `panic!` with a fixed, specific message.
527
+ /// This will always [` panic!`] because `unimplemented!` is just a shorthand for `panic!` with a
528
+ /// fixed, specific message.
529
529
///
530
530
/// Like `panic!`, this macro has a second form for displaying custom values.
531
531
///
@@ -602,7 +602,7 @@ macro_rules! unimplemented {
602
602
///
603
603
/// # Panics
604
604
///
605
- /// This will always [panic!](macro.panic.html)
605
+ /// This will always [` panic!`].
606
606
///
607
607
/// # Examples
608
608
///
You can’t perform that action at this time.
0 commit comments