diff --git a/font-types/src/raw.rs b/font-types/src/raw.rs index e53807fed..db1f72b01 100644 --- a/font-types/src/raw.rs +++ b/font-types/src/raw.rs @@ -52,7 +52,7 @@ pub trait ReadScalar: FixedSize { pub struct BigEndian(pub(crate) T::Raw); impl BigEndian { - /// construct a new BigEndian from raw bytes + /// construct a new `BigEndian` from raw bytes pub fn new(raw: T::Raw) -> BigEndian { BigEndian(raw) }