Rollup merge of #52587 - csmoe:doc, r=kennytm

Add missing backtick in UniversalRegions doc comment

r? @QuietMisdreavus
This commit is contained in:
kennytm 2018-07-22 22:10:18 +08:00
commit aea141e72c
No known key found for this signature in database
GPG key ID: FEF6C8051D0E013C

View file

@ -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`.