diff options
| author | Dylan DPC <dylan.dpc@gmail.com> | 2020-01-06 12:00:22 +0530 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-01-06 12:00:22 +0530 |
| commit | 162154f3768c8d6cd20a67353aaecf741c5e6ba2 (patch) | |
| tree | 5ea4fc2bb809470da245cf1ed86af6558321b0d2 | |
| parent | c79034ed4751175b61b5419d58abf7466f8905cc (diff) | |
| parent | cb8c071eb507f7616117a2b2735010f786a71295 (diff) | |
| download | rust-162154f3768c8d6cd20a67353aaecf741c5e6ba2.tar.gz rust-162154f3768c8d6cd20a67353aaecf741c5e6ba2.zip | |
Rollup merge of #67912 - LPardue:patch-1, r=Centril
macros: typo fix spotted while reviewing the todo!macro docs
| -rw-r--r-- | src/libcore/macros/mod.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libcore/macros/mod.rs b/src/libcore/macros/mod.rs index 0eb9e194236..76e58f0cc62 100644 --- a/src/libcore/macros/mod.rs +++ b/src/libcore/macros/mod.rs @@ -551,7 +551,7 @@ macro_rules! unreachable { /// Indicates unimplemented code by panicking with a message of "not implemented". /// -/// This allows the your code to type-check, which is useful if you are prototyping or +/// This allows your code to type-check, which is useful if you are prototyping or /// implementing a trait that requires multiple methods which you don't plan of using all of. /// /// The difference between `unimplemented!` and [`todo!`](macro.todo.html) is that while `todo!` |
