diff options
| author | Yuki Okushi <huyuumi.dev@gmail.com> | 2020-08-07 09:35:18 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-08-07 09:35:18 +0900 |
| commit | d36087bdac55672312f520cc7f97190c1d4cf6e6 (patch) | |
| tree | 3c0a214cbdc7c3da32a7ad8403941a14e0703257 | |
| parent | 1b61fd3ccf1b646ec2bbf627df09040bec97bcae (diff) | |
| parent | 188ef3a200c6d39aa343da4d556d8354424f2314 (diff) | |
| download | rust-d36087bdac55672312f520cc7f97190c1d4cf6e6.tar.gz rust-d36087bdac55672312f520cc7f97190c1d4cf6e6.zip | |
Rollup merge of #75181 - WaffleLapkin:patch-2, r=ecstaticmorse
Fix typo in `librustc_feature/active.rs`
| -rw-r--r-- | src/librustc_feature/active.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/librustc_feature/active.rs b/src/librustc_feature/active.rs index d7c310a8b4c..7e42f219ce2 100644 --- a/src/librustc_feature/active.rs +++ b/src/librustc_feature/active.rs @@ -576,7 +576,7 @@ declare_features! ( /// Lazily evaluate constants. This allows constants to depend on type parameters. (active, lazy_normalization_consts, "1.46.0", Some(72219), None), - /// Alloc calling `transmute` in const fn + /// Allows calling `transmute` in const fn (active, const_fn_transmute, "1.46.0", Some(53605), None), // ------------------------------------------------------------------------- |
