From 8e80c571131e80233a91e9d5f6023bfdfceec16c Mon Sep 17 00:00:00 2001 From: Clar Charr Date: Sat, 23 Dec 2017 22:03:04 -0500 Subject: [PATCH] Make internal docs build properly. --- src/librustc/mir/mod.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/librustc/mir/mod.rs b/src/librustc/mir/mod.rs index f410865a6cd7f..f2238ad2456ae 100644 --- a/src/librustc/mir/mod.rs +++ b/src/librustc/mir/mod.rs @@ -1818,7 +1818,7 @@ pub struct GeneratorLayout<'tcx> { /// /// Example: If type check produces a closure with the closure substs: /// -/// ``` +/// ```text /// ClosureSubsts = [ /// i8, // the "closure kind" /// for<'x> fn(&'a &'x u32) -> &'x u32, // the "closure signature" @@ -1829,7 +1829,7 @@ pub struct GeneratorLayout<'tcx> { /// here, there is one unique free region (`'a`) but it appears /// twice. We would "renumber" each occurence to a unique vid, as follows: /// -/// ``` +/// ```text /// ClosureSubsts = [ /// i8, // the "closure kind" /// for<'x> fn(&'1 &'x u32) -> &'x u32, // the "closure signature"