Skip to content

Commit

Permalink
Merge pull request #47 from dtolnay/platform
Browse files Browse the repository at this point in the history
Clarify platform sensitivity of MAX_STR_LEN
  • Loading branch information
dtolnay authored Nov 20, 2024
2 parents b5415a8 + 0592667 commit d5a33e9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ impl Buffer {
/// This trait is sealed and cannot be implemented for types outside of itoa.
pub trait Integer: private::Sealed {
/// The maximum length of string that formatting an integer of this type can
/// produce.
/// produce on the current target platform.
const MAX_STR_LEN: usize;
}

Expand Down

0 comments on commit d5a33e9

Please sign in to comment.