Skip to content

Commit de02a3e

Browse files
committed
Clean up section about FCPs
* I've never heard the term "pFCP" used before, so spell it out as "proposed final comment period". * Fix some unclear things (like implying that you need `r+` rights to start an FCP) * Improve the chapter's title, and make it consistent with its TOC entry * Make some other assorted minor cleanups and improvements
1 parent 18b93ae commit de02a3e

File tree

1 file changed

+20
-23
lines changed

1 file changed

+20
-23
lines changed

src/implementing_new_features.md

+20-23
Original file line numberDiff line numberDiff line change
@@ -1,43 +1,42 @@
1-
# Implement New Feature
1+
# Implementing new features
22

33
When you want to implement a new significant feature in the compiler,
44
you need to go through this process to make sure everything goes
55
smoothly.
66

7-
## The @rfcbot (p)FCP process
7+
## The @rfcbot FCP process
88

99
When the change is small and uncontroversial, then it can be done
10-
with just writing a PR and getting r+ from someone who knows that
10+
with just writing a PR and getting an r+ from someone who knows that
1111
part of the code. However, if the change is potentially controversial,
1212
it would be a bad idea to push it without consensus from the rest
1313
of the team (both in the "distributed system" sense to make sure
1414
you don't break anything you don't know about, and in the social
1515
sense to avoid PR fights).
1616

17-
If such a change seems to be too small to require a full formal RFC
18-
process (e.g. a big refactoring of the code, or a
19-
"technically-breaking" change, or a "big bugfix" that basically
20-
amounts to a small feature) but is still too controversial or
21-
big to get by with a single r+, you can start a pFCP (or, if you
22-
don't have r+ rights, ask someone who has them to start one - and
23-
unless they have a concern themselves, they should). pFCP stands for
24-
"proposed final comment period".
25-
26-
Again, the pFCP process is only needed if you need consensus - if you
27-
don't think anyone would have a problem with your change, it's ok to
17+
If such a change seems to be too small to require a full formal RFC process
18+
(e.g., a small standard library addition, a big refactoring of the code, a
19+
"technically-breaking" change, or a "big bugfix" that basically amounts to a
20+
small feature) but is still too controversial or big to get by with a single r+,
21+
you can propose a final comment period (FCP). Or, if you're not on the relevant
22+
team (and thus don't have @rfcbot permissions), ask someone who is to start one;
23+
unless they have a concern themselves, they should.
24+
25+
Again, the FCP process is only needed if you need consensus – if you
26+
don't think anyone would have a problem with your change, it's OK to
2827
get by with only an r+. For example, it is OK to add or modify
29-
unstable command-line flags or attributes without a pFCP for
28+
unstable command-line flags or attributes without an FCP for
3029
compiler development or standard library use, as long as you don't
3130
expect them to be in wide use in the nightly ecosystem.
3231

33-
You don't need to have the implementation fully ready for r+ to ask
34-
for a pFCP, but it is generally a good idea to have at least a proof
32+
You don't need to have the implementation fully ready for r+ to propose an FCP,
33+
but it is generally a good idea to have at least a proof
3534
of concept so that people can see what you are talking about.
3635

37-
When a pFCP is started, it requires all members of the team to sign off
38-
the FCP. After they all do so, there's a 10 day long "final comment
39-
period" where everybody can comment, and if no new concerns are raised,
40-
the PR/issue gets FCP approval.
36+
When an FCP is proposed, it requires all members of the team to sign off the
37+
FCP. After they all do so, there's a 10-day-long "final comment period" (hence
38+
the name) where everybody can comment, and if no concerns are raised, the
39+
PR/issue gets FCP approval.
4140

4241
## The logistics of writing features
4342

@@ -79,7 +78,6 @@ feature can be changed, or the feature might be completely
7978
rewritten or removed. Features are not supposed to gain tenure
8079
by being unstable and unchanged for a year.
8180

82-
<a name = "tracking-issue"></a>
8381
### Tracking Issues
8482

8583
To keep track of the status of an unstable feature, the
@@ -111,7 +109,6 @@ for stabilization in a checklist, e.g.,
111109
- [ ] Stabilize the feature. ([See instructions on rustc-dev-guide.](https://rustc-dev-guide.rust-lang.org/stabilization_guide.html#stabilization-pr))
112110
```
113111

114-
<a name="stability-in-code"></a>
115112
## Stability in code
116113

117114
The below steps needs to be followed in order to implement

0 commit comments

Comments
 (0)