From 0afee13f549bf954ddcc94c8d87183b82a3950b3 Mon Sep 17 00:00:00 2001 From: Alexander Regueiro Date: Thu, 31 Oct 2019 04:25:27 +0000 Subject: [PATCH 1/2] Updated instructions for tracking issue Removed link to Forge instructions for documentation since they no longer seem to exist. --- src/implementing_new_features.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/implementing_new_features.md b/src/implementing_new_features.md index 3055bf97a..3f4655ec1 100644 --- a/src/implementing_new_features.md +++ b/src/implementing_new_features.md @@ -99,15 +99,15 @@ for YOUR FEATURE". For tracking issues for features (as opposed to future-compat warnings), I don't think the description has to contain anything specific. Generally we put the list of items required -for stabilization using a github list, e.g. +for stabilization in a checklist, e.g., ```txt - **Steps:** +**Steps:** - - [ ] Implement the RFC (cc @rust-lang/compiler -- can anyone write - up mentoring instructions?) - - [ ] Adjust documentation ([see instructions on forge][doc-guide]) - - Note: no stabilization step here. +- [ ] Implement the RFC (cc @rust-lang/compiler -- can anyone write + up mentoring instructions?) +- [ ] Stabilize the feature. +- [ ] Adjust documentation. ``` From 8739495b36b21473722623cc5b7ed74a11a754ff Mon Sep 17 00:00:00 2001 From: Alexander Regueiro Date: Fri, 1 Nov 2019 15:11:29 +0000 Subject: [PATCH 2/2] Improved links and wording --- src/implementing_new_features.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/implementing_new_features.md b/src/implementing_new_features.md index 3f4655ec1..73a6a40a0 100644 --- a/src/implementing_new_features.md +++ b/src/implementing_new_features.md @@ -104,10 +104,10 @@ for stabilization in a checklist, e.g., ```txt **Steps:** -- [ ] Implement the RFC (cc @rust-lang/compiler -- can anyone write +- [ ] Implement the RFC. (CC @rust-lang/compiler -- can anyone write up mentoring instructions?) -- [ ] Stabilize the feature. -- [ ] Adjust documentation. +- [ ] Adjust the documentation. ([See instructions on rustc-guide.](https://rust-lang.github.io/rustc-guide/stabilization_guide.html#documentation-prs)) +- [ ] Stabilize the feature. ([See instructions on rustc-guide.](https://rust-lang.github.io/rustc-guide/stabilization_guide.html#stabilization-pr)) ```