Fix warning in doc gen

This commit is contained in:
Richard Dodd 2018-08-10 10:29:16 +01:00
parent 615f8fbc4d
commit 56b0f64d0b

View File

@ -790,7 +790,7 @@ pub mod __rt {
/// above. That means if this function is called and referenced we'll pull
/// in the object file and link the intrinsics.
///
/// Note that this is an #[inline] function to remove the function call
/// Note that this is an `#[inline]` function to remove the function call
/// overhead we inject in functions, but right now it's unclear how to do
/// this in a zero-cost fashion. The lowest cost seems to be generating a
/// store that can't be optimized away (to a global), which is listed below.