about summary refs log tree commit diff
path: root/src/librustc_trans/trans/callee.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/librustc_trans/trans/callee.rs')
-rw-r--r--src/librustc_trans/trans/callee.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/librustc_trans/trans/callee.rs b/src/librustc_trans/trans/callee.rs
index 861233bafdf..cf36ec1f3ed 100644
--- a/src/librustc_trans/trans/callee.rs
+++ b/src/librustc_trans/trans/callee.rs
@@ -253,7 +253,7 @@ fn trans_fn_ref_with_substs_to_callee<'blk, 'tcx>(bcx: Block<'blk, 'tcx>,
 /// Translates an adapter that implements the `Fn` trait for a fn
 /// pointer. This is basically the equivalent of something like:
 ///
-/// ```rust
+/// ```
 /// impl<'a> Fn(&'a int) -> &'a int for fn(&int) -> &int {
 ///     extern "rust-abi" fn call(&self, args: (&'a int,)) -> &'a int {
 ///         (*self)(args.0)