diff options
| author | Patrik Kormosi <patres.kormi@gmail.com> | 2023-04-09 10:38:35 +0200 |
|---|---|---|
| committer | Patrik Kormosi <patres.kormi@gmail.com> | 2023-04-09 10:38:35 +0200 |
| commit | 53fa6fe56fda45fc9ed0c3ae2a847e2745611f05 (patch) | |
| tree | 97b56cf60a6dfce8b4423c0cb3ed7e44ec0365ed | |
| parent | 7cd6f55323c15c9e8eed6361777d04e33ba7c429 (diff) | |
| download | rust-53fa6fe56fda45fc9ed0c3ae2a847e2745611f05.tar.gz rust-53fa6fe56fda45fc9ed0c3ae2a847e2745611f05.zip | |
Fix typo in todo! macro docstring
| -rw-r--r-- | library/core/src/macros/mod.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/library/core/src/macros/mod.rs b/library/core/src/macros/mod.rs index 529f62f4d6c..c39a269c1de 100644 --- a/library/core/src/macros/mod.rs +++ b/library/core/src/macros/mod.rs @@ -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 |
