Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions library/core/src/fmt/num.rs
Original file line number Diff line number Diff line change
Expand Up @@ -299,8 +299,8 @@ macro_rules! impl_Display {
}

impl $Unsigned {
/// Allows users to write an integer (in signed decimal format) into a variable `buf` of
/// type [`NumBuffer`] that is passed by the caller by mutable reference.
/// Allows users to write an integer (in unsigned decimal format) into a variable `buf`
/// of type [`NumBuffer`] that is passed by the caller by mutable reference.
///
/// # Examples
///
Expand Down Expand Up @@ -738,7 +738,7 @@ impl u128 {
offset
}

/// Allows users to write an integer (in signed decimal format) into a variable `buf` of
/// Allows users to write an integer (in unsigned decimal format) into a variable `buf` of
/// type [`NumBuffer`] that is passed by the caller by mutable reference.
///
/// # Examples
Expand Down
Loading