File tree Expand file tree Collapse file tree 1 file changed +6
-1
lines changed Expand file tree Collapse file tree 1 file changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -48,6 +48,8 @@ Stabilized APIs and Const Stabilized APIs should both be formatted roughly as fo
48
48
49
49
``` md
50
50
- [`std::ptr::null_mut`](https://doc.rust-lang.org/std/ptr/fn.null_mut.html)
51
+ <!-- for trait implemenations: -->
52
+ - [`impl<T: Clone, const N: usize> From<&[T; N]> for Vec<T>`](https://doc.rust-lang.org/stable/std/vec/struct.Vec.html#impl-From%3C%26%5BT;+N%5D%3E-for-Vec%3CT,+Global%3E)
51
53
```
52
54
53
55
Note that:
@@ -56,7 +58,10 @@ Note that:
56
58
* the link is to stable docs (and so may not actually work at time of writing)
57
59
* the API is directly noted. Sometimes we compress APIs (e.g., ` uN ` for
58
60
unsigned integers) to avoid too much text.
59
-
61
+ * link fragments can be long and hard to predict, so it is often better to copy and paste the url than write it manually
62
+ (if the item doesn't appear in stable docs, you can copy it from nightly and edit the url).
63
+ * if the only thing being stablized is trait implementations (and not the corrosponding trait),
64
+ all impls are listed with links to the corrosponding impl blocks.
60
65
## Release team: Step 3: Confirm all issues/PRs needing relnotes are labeled ` relnotes `
61
66
62
67
This steps should happen in the first 3 weeks of the beta period (earlier is
You can’t perform that action at this time.
0 commit comments