Rollup merge of #110104 - kormosi:todo_typo, r=cuviper

Reword the docstring in todo! macro definition, fixing a typo
This commit is contained in:
Michael Goulet 2023-04-11 20:28:47 -07:00 committed by GitHub
commit 4f2f7fda10
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

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