From 18c28b1fe08998dd6a9a392e53a10ce237cd9611 Mon Sep 17 00:00:00 2001 From: Tim Bannister Date: Thu, 28 Mar 2019 14:24:03 +0000 Subject: [PATCH 1/2] Fix typo Fixup for 9d408d972f7cf16162ec3ab35e11c659ccee9566 --- src/libcore/macros.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libcore/macros.rs b/src/libcore/macros.rs index d77936c7ddd91..fed6cf537e1f7 100644 --- a/src/libcore/macros.rs +++ b/src/libcore/macros.rs @@ -562,7 +562,7 @@ macro_rules! unimplemented { /// A standardized placeholder for marking unfinished code. /// /// This can be useful if you are prototyping and are just looking to have your -/// code typecheck. `todo!` works exactly like `unimplemented!`, there only +/// code typecheck. `todo!` works exactly like `unimplemented!`, the only /// difference between the two macros is the name. /// /// # Panics From da4d3ce5c5d8ae064962ae850669bf6bf73f9ab3 Mon Sep 17 00:00:00 2001 From: Tim Bannister Date: Thu, 28 Mar 2019 14:26:29 +0000 Subject: [PATCH 2/2] Tweak punctuation Really tiny tweak, to help readability. --- src/libcore/macros.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libcore/macros.rs b/src/libcore/macros.rs index fed6cf537e1f7..fab0b9488b0a1 100644 --- a/src/libcore/macros.rs +++ b/src/libcore/macros.rs @@ -562,7 +562,7 @@ macro_rules! unimplemented { /// A standardized placeholder for marking unfinished code. /// /// This can be useful if you are prototyping and are just looking to have your -/// code typecheck. `todo!` works exactly like `unimplemented!`, the only +/// code typecheck. `todo!` works exactly like `unimplemented!`; the only /// difference between the two macros is the name. /// /// # Panics