File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -72,7 +72,7 @@ trait ToU64 {
72
72
73
73
/// Statically verify that the platform `usize` can fit within a `u64`.
74
74
/// 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.
76
76
impl ToU64 for usize {
77
77
fn to_u64 ( self ) -> u64 {
78
78
static_assertions:: const_assert!(
@@ -90,7 +90,7 @@ pub trait ToUsize {
90
90
91
91
/// Statically verify that the given type can fit within a `usize`.
92
92
/// 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.
94
94
macro_rules! impl_to_usize_from {
95
95
( $from_type: ty ) => {
96
96
impl ToUsize for $from_type {
You can’t perform that action at this time.
0 commit comments