Skip to content

Commit 9514817

Browse files
committed
Fix cargo doc warning.
1 parent 99035d9 commit 9514817

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

mp4parse/src/lib.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ trait ToU64 {
7272

7373
/// Statically verify that the platform `usize` can fit within a `u64`.
7474
/// If the size won't fit on the given platform, this will fail at compile time, but if a type
75-
/// which can fail TryInto<usize> is used, it may panic.
75+
/// which can fail `TryInto<usize>` is used, it may panic.
7676
impl ToU64 for usize {
7777
fn to_u64(self) -> u64 {
7878
static_assertions::const_assert!(
@@ -90,7 +90,7 @@ pub trait ToUsize {
9090

9191
/// Statically verify that the given type can fit within a `usize`.
9292
/// If the size won't fit on the given platform, this will fail at compile time, but if a type
93-
/// which can fail TryInto<usize> is used, it may panic.
93+
/// which can fail `TryInto<usize>` is used, it may panic.
9494
macro_rules! impl_to_usize_from {
9595
( $from_type:ty ) => {
9696
impl ToUsize for $from_type {

0 commit comments

Comments
 (0)