diff options
| author | Vadim Petrochenkov <vadim.petrochenkov@gmail.com> | 2020-07-01 20:23:06 +0300 |
|---|---|---|
| committer | Vadim Petrochenkov <vadim.petrochenkov@gmail.com> | 2020-07-01 20:23:06 +0300 |
| commit | eb4ba55055393961a51ae47fee1e734e095d91ef (patch) | |
| tree | 44f409b1aaea1209ad22575fd187836f2873c156 | |
| parent | b37434ef31bb896b473a1eb67b8f191c04b2c9f3 (diff) | |
| download | rust-eb4ba55055393961a51ae47fee1e734e095d91ef.tar.gz rust-eb4ba55055393961a51ae47fee1e734e095d91ef.zip | |
Add an issue number for the pretty_printing_compatibility_hack FIXME
| -rw-r--r-- | src/librustc_ast/token.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/librustc_ast/token.rs b/src/librustc_ast/token.rs index 0f0428574de..173ea5e48d6 100644 --- a/src/librustc_ast/token.rs +++ b/src/librustc_ast/token.rs @@ -782,7 +782,7 @@ impl Nonterminal { /// We need to maintain some special pretty-printing behavior for them due to incorrect /// asserts in old versions of those crates and their wide use in the ecosystem. /// See issue #73345 for more details. - /// FIXME: Remove this eventually. + /// FIXME(#73933): Remove this eventually. pub fn pretty_printing_compatibility_hack(&self) -> bool { if let NtItem(item) = self { let name = item.ident.name; |
