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