Missing backticks.

This commit is contained in:
Bruce Mitchener 2019-07-09 17:50:50 +07:00
parent 84e14d4f36
commit 107a326745
1 changed files with 1 additions and 1 deletions

View File

@ -682,7 +682,7 @@ impl<T: NumCast> NumCast for Wrapping<T> {
/// A generic interface for casting between machine scalars with the
/// `as` operator, which admits narrowing and precision loss.
/// Implementers of this trait AsPrimitive should behave like a primitive
/// Implementers of this trait `AsPrimitive` should behave like a primitive
/// numeric type (e.g. a newtype around another primitive), and the
/// intended conversion must never fail.
///