diff options
| author | Jorge Aparicio <jorge@japaric.io> | 2018-08-23 13:52:43 +0200 |
|---|---|---|
| committer | Jorge Aparicio <jorge@japaric.io> | 2018-08-23 20:58:55 +0200 |
| commit | ca03f86aadbcd79129fce8d29bf7dff68c778a81 (patch) | |
| tree | 2908e1f84fb4f1c71e334952262555b79ce2454f /src/libsyntax | |
| parent | a774c81f9855f75a1a86f71a851b373d2178d9e9 (diff) | |
| download | rust-ca03f86aadbcd79129fce8d29bf7dff68c778a81.tar.gz rust-ca03f86aadbcd79129fce8d29bf7dff68c778a81.zip | |
fix tidy
Diffstat (limited to 'src/libsyntax')
| -rw-r--r-- | src/libsyntax/feature_gate.rs | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/src/libsyntax/feature_gate.rs b/src/libsyntax/feature_gate.rs index 04066f687fc..db4bd29c4b7 100644 --- a/src/libsyntax/feature_gate.rs +++ b/src/libsyntax/feature_gate.rs @@ -1107,10 +1107,12 @@ pub const BUILTIN_ATTRIBUTES: &'static [(&'static str, AttributeType, AttributeG // RFC 2070 (deprecated attribute name) ("panic_implementation", - Normal, Gated(Stability::Deprecated("https://github.com/rust-lang/rust/issues/44489#issuecomment-415140224"), - "panic_implementation", - "This attribute was renamed to `panic_handler`", - cfg_fn!(panic_implementation))), + Normal, + Gated(Stability::Deprecated("https://github.com/rust-lang/rust/issues/44489\ + #issuecomment-415140224"), + "panic_implementation", + "This attribute was renamed to `panic_handler`", + cfg_fn!(panic_implementation))), // RFC 2070 ("panic_handler", Normal, Gated(Stability::Unstable, |
