int_macros was only using to_xe_bytes_doc and not from_xe_bytes_doc
This commit is contained in:
parent
f893495e3d
commit
94f633b002
1 changed files with 3 additions and 3 deletions
|
@ -2611,7 +2611,7 @@ macro_rules! int_impl {
|
||||||
/// Create an integer value from its representation as a byte array in
|
/// Create an integer value from its representation as a byte array in
|
||||||
/// big endian.
|
/// big endian.
|
||||||
///
|
///
|
||||||
#[doc = $to_xe_bytes_doc]
|
#[doc = $from_xe_bytes_doc]
|
||||||
///
|
///
|
||||||
/// # Examples
|
/// # Examples
|
||||||
///
|
///
|
||||||
|
@ -2640,7 +2640,7 @@ macro_rules! int_impl {
|
||||||
/// Create an integer value from its representation as a byte array in
|
/// Create an integer value from its representation as a byte array in
|
||||||
/// little endian.
|
/// little endian.
|
||||||
///
|
///
|
||||||
#[doc = $to_xe_bytes_doc]
|
#[doc = $from_xe_bytes_doc]
|
||||||
///
|
///
|
||||||
/// # Examples
|
/// # Examples
|
||||||
///
|
///
|
||||||
|
@ -2676,7 +2676,7 @@ macro_rules! int_impl {
|
||||||
/// [`from_be_bytes`]: Self::from_be_bytes
|
/// [`from_be_bytes`]: Self::from_be_bytes
|
||||||
/// [`from_le_bytes`]: Self::from_le_bytes
|
/// [`from_le_bytes`]: Self::from_le_bytes
|
||||||
///
|
///
|
||||||
#[doc = $to_xe_bytes_doc]
|
#[doc = $from_xe_bytes_doc]
|
||||||
///
|
///
|
||||||
/// # Examples
|
/// # Examples
|
||||||
///
|
///
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue