diff options
| author | Stuart Cook <Zalathar@users.noreply.github.com> | 2025-08-10 19:45:55 +1000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-08-10 19:45:55 +1000 |
| commit | 94b344d1af0cf378d710d2c5f7dcd9c8072fe5d4 (patch) | |
| tree | 9667d084338a940460fada3991254a5b9077a1ed | |
| parent | 461009dc939327b9fcb83fe39ae07bb76987fc0f (diff) | |
| parent | feed41c852f5075e0faea506527be1937198fc4d (diff) | |
| download | rust-94b344d1af0cf378d710d2c5f7dcd9c8072fe5d4.tar.gz rust-94b344d1af0cf378d710d2c5f7dcd9c8072fe5d4.zip | |
Rollup merge of #145187 - joshtriplett:fix-unstable-feature-comment, r=lqd
Fix an unstable feature comment that wasn't a doc comment Every other feature in the list uses a doc comment; fix one that used a regular comment to use a doc comment.
| -rw-r--r-- | compiler/rustc_feature/src/unstable.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_feature/src/unstable.rs b/compiler/rustc_feature/src/unstable.rs index ae1f57c1ef6..acc21f6c6d2 100644 --- a/compiler/rustc_feature/src/unstable.rs +++ b/compiler/rustc_feature/src/unstable.rs @@ -545,7 +545,7 @@ declare_features! ( (incomplete, inherent_associated_types, "1.52.0", Some(8995)), /// Allows using `pointer` and `reference` in intra-doc links (unstable, intra_doc_pointers, "1.51.0", Some(80896)), - // Allows setting the threshold for the `large_assignments` lint. + /// Allows setting the threshold for the `large_assignments` lint. (unstable, large_assignments, "1.52.0", Some(83518)), /// Allow to have type alias types for inter-crate use. (incomplete, lazy_type_alias, "1.72.0", Some(112792)), |
