Skip to content

Commit 2919e32

Browse files
committed
Address final nits
1 parent f004079 commit 2919e32

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

src/libsyntax/feature_gate.rs

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,8 @@ const KNOWN_FEATURES: &'static [(&'static str, &'static str, Status)] = &[
169169

170170
// Allows associated type defaults
171171
("associated_type_defaults", "1.2.0", Active),
172-
// Allows macros to appear in the type position.
172+
// Allows macros to appear in the type position.
173+
173174
("type_macros", "1.3.0", Active),
174175
];
175176
// (changing above list without updating src/doc/reference.md makes @cmr sad)
@@ -230,7 +231,8 @@ pub const KNOWN_ATTRIBUTES: &'static [(&'static str, AttributeType)] = &[
230231
"no_std is experimental")),
231232
("lang", Gated("lang_items",
232233
"language items are subject to change")),
233-
("linkage", Gated("linkage", "the `linkage` attribute is experimental \
234+
("linkage", Gated("linkage",
235+
"the `linkage` attribute is experimental \
234236
and not portable across platforms")),
235237
("thread_local", Gated("thread_local",
236238
"`#[thread_local]` is an experimental feature, and does not \

0 commit comments

Comments
 (0)