From cb8c071eb507f7616117a2b2735010f786a71295 Mon Sep 17 00:00:00 2001 From: Lucas Pardue Date: Mon, 6 Jan 2020 01:55:24 +0000 Subject: [PATCH] macros: typo fix spotted while reviewing the todo!macro docs --- src/libcore/macros/mod.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libcore/macros/mod.rs b/src/libcore/macros/mod.rs index 0eb9e19423617..76e58f0cc62bc 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!`