Fix typo in todo! macro docstring

This commit is contained in:
Patrik Kormosi 2023-04-09 10:38:35 +02:00
parent 7cd6f55323
commit 53fa6fe56f

View file

@ -713,7 +713,7 @@ macro_rules! unimplemented {
/// Indicates unfinished code.
///
/// This can be useful if you are prototyping and are just looking to have your
/// code typecheck.
/// code typechecked.
///
/// The difference between [`unimplemented!`] and `todo!` is that while `todo!` conveys
/// an intent of implementing the functionality later and the message is "not yet