diff options
| author | Rémy Rakic <remy.rakic+github@gmail.com> | 2020-12-31 02:01:57 +0100 |
|---|---|---|
| committer | Rémy Rakic <remy.rakic+github@gmail.com> | 2021-01-01 10:55:16 +0100 |
| commit | 5f4bb468c1750ade685d168e25cc876bb6d73f8f (patch) | |
| tree | 40f72474e0fedc56f5c6fbac9753adae50d03184 | |
| parent | 61f33bfd2940ea55559b253a66c42937a17d3c87 (diff) | |
| download | rust-5f4bb468c1750ade685d168e25cc876bb6d73f8f.tar.gz rust-5f4bb468c1750ade685d168e25cc876bb6d73f8f.zip | |
fix typo in feature gates file
| -rw-r--r-- | compiler/rustc_feature/src/active.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_feature/src/active.rs b/compiler/rustc_feature/src/active.rs index 70213f346f6..6d8443a75e7 100644 --- a/compiler/rustc_feature/src/active.rs +++ b/compiler/rustc_feature/src/active.rs @@ -581,7 +581,7 @@ declare_features! ( /// Allows `if let` guard in match arms. (active, if_let_guard, "1.47.0", Some(51114), None), - /// Allows non-trivial generic constants which have to be manually propageted upwards. + /// Allows non-trivial generic constants which have to be manually propagated upwards. (active, const_evaluatable_checked, "1.48.0", Some(76560), None), /// Allows basic arithmetic on floating point types in a `const fn`. |
