diff options
| author | kennytm <kennytm@gmail.com> | 2018-07-22 22:10:18 +0800 |
|---|---|---|
| committer | kennytm <kennytm@gmail.com> | 2018-07-23 01:00:07 +0800 |
| commit | aea141e72cd1f8cf246c2a97890dac1d340c021d (patch) | |
| tree | 740da89b21af43ea173f68c3629c38acdc3306ed /src | |
| parent | 1208944ccbd6d683b5c813150d829a728b3328a1 (diff) | |
| parent | 50720ba7066345a2c5d576c9ae8d0cfc9d1cfb50 (diff) | |
| download | rust-aea141e72cd1f8cf246c2a97890dac1d340c021d.tar.gz rust-aea141e72cd1f8cf246c2a97890dac1d340c021d.zip | |
Rollup merge of #52587 - csmoe:doc, r=kennytm
Add missing backtick in UniversalRegions doc comment r? @QuietMisdreavus
Diffstat (limited to 'src')
| -rw-r--r-- | src/librustc_mir/borrow_check/nll/universal_regions.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/librustc_mir/borrow_check/nll/universal_regions.rs b/src/librustc_mir/borrow_check/nll/universal_regions.rs index e7930b21481..808e8b6b8fd 100644 --- a/src/librustc_mir/borrow_check/nll/universal_regions.rs +++ b/src/librustc_mir/borrow_check/nll/universal_regions.rs @@ -57,7 +57,7 @@ pub struct UniversalRegions<'tcx> { /// externals, then locals. So things from: /// - `FIRST_GLOBAL_INDEX..first_extern_index` are global; /// - `first_extern_index..first_local_index` are external; and - /// - first_local_index..num_universals` are local. + /// - `first_local_index..num_universals` are local. first_extern_index: usize, /// See `first_extern_index`. |
