diff options
| author | Mazdak Farrokhzad <twingoow@gmail.com> | 2020-03-21 05:33:28 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-03-21 05:33:28 +0100 |
| commit | a3771e4a98fca99278a0cde363389ba98ea0bd45 (patch) | |
| tree | 85ab3ea7fb001243b0a0ad04cf7ce9543b184910 | |
| parent | 855eac345a81c910d2a8902d7d8f3c7e75844624 (diff) | |
| parent | 3f6236ea5af2a4cef4e1d540f4e4f507eed5b0da (diff) | |
| download | rust-a3771e4a98fca99278a0cde363389ba98ea0bd45.tar.gz rust-a3771e4a98fca99278a0cde363389ba98ea0bd45.zip | |
Rollup merge of #70177 - bjorn3:patch-2, r=Dylan-DPC
Fix oudated comment for NamedRegionMap `ResolveLifetimes` uses a `LocalDefId` since #66131.
| -rw-r--r-- | src/librustc_resolve/late/lifetimes.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/librustc_resolve/late/lifetimes.rs b/src/librustc_resolve/late/lifetimes.rs index 51bf1f48439..bc843fccc4c 100644 --- a/src/librustc_resolve/late/lifetimes.rs +++ b/src/librustc_resolve/late/lifetimes.rs @@ -133,7 +133,7 @@ impl RegionExt for Region { /// that it corresponds to. /// /// FIXME. This struct gets converted to a `ResolveLifetimes` for -/// actual use. It has the same data, but indexed by `DefIndex`. This +/// actual use. It has the same data, but indexed by `LocalDefId`. This /// is silly. #[derive(Default)] struct NamedRegionMap { |
