about summary refs log tree commit diff
path: root/compiler/rustc_feature/src
diff options
context:
space:
mode:
authorcarbotaniuman <41451839+carbotaniuman@users.noreply.github.com>2024-05-16 01:41:55 -0500
committercarbotaniuman <41451839+carbotaniuman@users.noreply.github.com>2024-06-06 20:27:24 -0500
commit68719e0bda178103a3e4af0dc1e7df45f1d9dd00 (patch)
tree72fb00f06abed46101f1f4f15694b94f8bdb8b12 /compiler/rustc_feature/src
parent230b58febf78bb1680b4960d32350a7430a8aab5 (diff)
downloadrust-68719e0bda178103a3e4af0dc1e7df45f1d9dd00.tar.gz
rust-68719e0bda178103a3e4af0dc1e7df45f1d9dd00.zip
Fix doc comment
Diffstat (limited to 'compiler/rustc_feature/src')
-rw-r--r--compiler/rustc_feature/src/unstable.rs3
1 files changed, 2 insertions, 1 deletions
diff --git a/compiler/rustc_feature/src/unstable.rs b/compiler/rustc_feature/src/unstable.rs
index 83a50f017d3..4688624f310 100644
--- a/compiler/rustc_feature/src/unstable.rs
+++ b/compiler/rustc_feature/src/unstable.rs
@@ -622,8 +622,9 @@ declare_features! (
     (incomplete, unnamed_fields, "1.74.0", Some(49804)),
     /// Allows unsafe on extern declarations and safety qualifiers over internal items.
     (unstable, unsafe_extern_blocks, "CURRENT_RUSTC_VERSION", Some(123743)),
-    /// Allows unsized fn parameters.
+    /// Allows unsafe attributes.
     (unstable, unsafe_attributes, "CURRENT_RUSTC_VERSION", Some(123757)),
+    /// Allows unsized fn parameters.
     (unstable, unsized_fn_params, "1.49.0", Some(48055)),
     /// Allows unsized rvalues at arguments and parameters.
     (incomplete, unsized_locals, "1.30.0", Some(48055)),