Skip to content

Commit 13c23ef

Browse files
committed
Use feature instead of fg and adjust some item names that tried to use newlines (which isn't supported)
1 parent 47873f2 commit 13c23ef

File tree

1 file changed

+19
-19
lines changed

1 file changed

+19
-19
lines changed

src/skill_tree.md

Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
```skill-tree
44
[[group]]
55
name = "mut_ref"
6-
label = "mutable references in\nconst fn\nfg:const_mut_refs"
6+
label = "mutable references in\nconst fn\nfeature:const_mut_refs"
77
href = "https://github.com/rust-lang/rust/issues/57349"
88
items = []
99
@@ -60,14 +60,14 @@ items = []
6060
6161
[[group]]
6262
name = "ptr-is-null"
63-
label = "<*T>::is_null\nfg:const_ptr_is_null"
63+
label = "<*T>::is_null\nfeature:const_ptr_is_null"
6464
requires = ["fuzzy-ptr-comparisons"]
6565
href = "https://github.com/rust-lang/rust/issues/74939"
6666
items = []
6767
6868
[[group]]
6969
name = "fuzzy-ptr-comparisons"
70-
label = "guaranteed_eq and\nguaranteed_ne\nfg:const_compare_raw_pointers"
70+
label = "guaranteed_eq and\nguaranteed_ne\nfeature:const_compare_raw_pointers"
7171
href = "https://github.com/rust-lang/rust/issues/53020"
7272
requires = []
7373
items = []
@@ -76,15 +76,15 @@ items = []
7676
name = "unconst_rules"
7777
label = "Need to come up\nwith a scheme\nfor const unsafe/unconst"
7878
items = [
79-
{ label = "transmute in functions\nfg:const_fn_transmute", href = "https://github.com/rust-lang/rust/issues/53605" },
80-
{ label = "union field access in functions\nfg:const_fn_union", href = "https://github.com/rust-lang/rust/issues/51909", port = "union" },
81-
{ label = "deref of raw pointers\nfg:const_raw_ptr_deref", href = "https://github.com/rust-lang/rust/issues/51911", port = "raw_ptr_deref" },
79+
{ label = "feature:const_fn_transmute", href = "https://github.com/rust-lang/rust/issues/53605" },
80+
{ label = "feature:const_fn_union", href = "https://github.com/rust-lang/rust/issues/51909", port = "union" },
81+
{ label = "feature:const_raw_ptr_deref", href = "https://github.com/rust-lang/rust/issues/51911", port = "raw_ptr_deref" },
8282
]
8383
href = "https://github.com/rust-lang/const-eval/issues/14"
8484
8585
[[group]]
8686
name = "offset_of"
87-
label = "offset_of\nfg:const_ptr_offset"
87+
label = "offset_of\nfeature:const_ptr_offset"
8888
href = "https://github.com/rust-lang/rust/issues/71499"
8989
items = []
9090
requires = [
@@ -96,19 +96,19 @@ requires = [
9696
9797
[[group]]
9898
name = "offset_from"
99-
label = "offset_from\nfg:ptr_offset_from"
99+
label = "offset_from\nfeature:ptr_offset_from"
100100
href = "https://github.com/rust-lang/rust/issues/41079"
101101
items = []
102102
103103
[[group]]
104104
name = "raw_ref_macros"
105-
label = "raw_ref maros\nfg:raw_ref_macros"
105+
label = "raw_ref maros\nfeature:raw_ref_macros"
106106
href = "https://github.com/rust-lang/rust/issues/73394"
107107
items = []
108108
109109
[[group]]
110110
name = "maybe_uninit_as_ptr"
111-
label = "MaybeUninit::as_ptr\nfg:const_maybe_uninit_as_ptr"
111+
label = "MaybeUninit::as_ptr\nfeature:const_maybe_uninit_as_ptr"
112112
href = "https://github.com/rust-lang/rust/issues/75251"
113113
items = []
114114
@@ -154,19 +154,19 @@ href = "https://github.com/rust-lang/rust/issues/57241"
154154
items = [
155155
{ label = "from_bits" },
156156
{ label = "to_bits" },
157-
{ label = "general usage of float math,\narguments and return types" },
157+
{ label = "float math, arguments and return types" },
158158
]
159159
160160
[[group]]
161161
name = "float_classify"
162-
label = "fg:const_float_classify"
162+
label = "feature:const_float_classify"
163163
href = "https://github.com/rust-lang/rust/issues/72505"
164164
items = []
165165
requires = ["float_bits_conv"]
166166
167167
[[group]]
168168
name = "float_bits_conv"
169-
label = "fg:const_float_bits_conv"
169+
label = "feature:const_float_bits_conv"
170170
href = "https://github.com/rust-lang/rust/issues/72447"
171171
items = []
172172
requires = ["float"]
@@ -192,42 +192,42 @@ href = "https://github.com/rust-lang/rust/issues/51999"
192192
items = []
193193
194194
[[group]]
195-
label = "fg:const_panic"
195+
label = "feature:const_panic"
196196
name = "panic"
197197
href = "https://github.com/rust-lang/rust/issues/51999"
198198
items = [
199199
{ label = "assert!" },
200200
]
201201
202202
[[group]]
203-
label = "fg:const_discriminant"
203+
label = "feature:const_discriminant"
204204
name = "discriminant"
205205
href = "https://github.com/rust-lang/rust/pull/69825"
206206
items = []
207207
208208
[[group]]
209-
label = "fg:const_trait_bound_opt_out"
209+
label = "feature:const_trait_bound_opt_out"
210210
name = "trait_bound_opt_out"
211211
href = "https://github.com/rust-lang/rust/issues/67794"
212212
items = []
213213
214214
[[group]]
215-
label = "fg:const_trait_impl"
215+
label = "feature:const_trait_impl"
216216
name = "trait_impl"
217217
href="https://github.com/rust-lang/rust/issues/67792"
218218
items = [
219219
{ label = "?const trait bound opt out", href = "https://github.com/rust-lang/rust/issues/67794"}
220220
]
221221
222222
[[group]]
223-
label = "fg:const_raw_ptr_to_usize_cast"
223+
label = "feature:const_raw_ptr_to_usize_cast"
224224
name = "raw_ptr_to_usize_cast"
225225
href="https://github.com/rust-lang/rust/issues/51910"
226226
items = []
227227
requires = ["unconst_rules"]
228228
229229
[[group]]
230-
label = "fg:const_extern_fn"
230+
label = "feature:const_extern_fn"
231231
name = "extern_const_fn"
232232
href = "https://github.com/rust-lang/rust/issues/64926"
233233
items = []

0 commit comments

Comments
 (0)