Fix type in 'Data' rustdocs: 'T' -> 'DataGuard'.

This commit is contained in:
Thomas Lent 2019-06-01 15:41:55 -04:00 committed by Sergio Benitez
parent aaaecd10cd
commit b00423d7ac

View File

@ -39,8 +39,8 @@ const PEEK_BYTES: usize = 512;
/// # fn main() { } /// # fn main() { }
/// ``` /// ```
/// ///
/// Above, `T` can be any type that implements `FromData`. Note that `Data` /// Above, `DataGuard` can be any type that implements `FromData`. Note that
/// itself implements `FromData`. /// `Data` itself implements `FromData`.
/// ///
/// # Reading Data /// # Reading Data
/// ///