Mention that u128, i128 implement UriDisplay.

This commit is contained in:
Alva Snædís 2018-11-10 16:43:18 +00:00 committed by Sergio Benitez
parent b87994b52c
commit 4dea9eed36
1 changed files with 2 additions and 2 deletions

View File

@ -69,8 +69,8 @@ use {RawStr, ext::Normalize};
/// Rocket implements `UriDisplay` for several built-in types. Their behavior is
/// documented here.
///
/// * **i8, i16, i32, i64, isize, u8, u16, u32, u64, usize, f32, f64, bool,
/// IpAddr, Ipv4Addr, Ipv6Addr**
/// * **i8, i16, i32, i64, i128, isize, u8, u16, u32, u64, u128, usize, f32,
/// f64, bool, IpAddr, Ipv4Addr, Ipv6Addr**
///
/// The implementation of `UriDisplay` for these types is identical to the
/// `Display` implementation.