Skip to content

Commit

Permalink
Appease tidy
Browse files Browse the repository at this point in the history
  • Loading branch information
Colonial-Dev committed Oct 2, 2023
1 parent f96cfb5 commit 0c6d279
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions library/core/src/macros/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -719,7 +719,7 @@ macro_rules! unreachable {
/// The difference between `unimplemented!` and [`todo!`] is that while `todo!`
/// conveys an intent of implementing the functionality later and the message is "not yet
/// implemented", `unimplemented!` makes no such claims. Its message is "not implemented".
///
///
/// Also, some IDEs will mark `todo!`s.
///
/// # Panics
Expand Down Expand Up @@ -806,7 +806,7 @@ macro_rules! unimplemented {
/// The difference between [`unimplemented!`] and `todo!` is that while `todo!` conveys
/// an intent of implementing the functionality later and the message is "not yet
/// implemented", `unimplemented!` makes no such claims. Its message is "not implemented".
///
///
/// Also, some IDEs will mark `todo!`s.
///
/// # Panics
Expand All @@ -815,7 +815,7 @@ macro_rules! unimplemented {
/// fixed, specific message.
///
/// Like `panic!`, this macro has a second form for displaying custom values.
///
///
/// # Examples
///
/// Here's an example of some in-progress code. We have a trait `Foo`:
Expand Down Expand Up @@ -849,7 +849,7 @@ macro_rules! unimplemented {
/// // Let's not worry about implementing baz() for now
/// todo!();
/// }
///
///
/// fn qux(&self) -> Result<u64, ()> {
/// // We can add a message to todo! to display our omission.
/// // This will display:
Expand Down

0 comments on commit 0c6d279

Please sign in to comment.