Skip to content

Commit ec90f9d

Browse files
Fix documentation for log functions unsigned int
1 parent 878c783 commit ec90f9d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

library/core/src/num/uint_macros.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -689,7 +689,7 @@ macro_rules! uint_impl {
689689
///
690690
/// # Panics
691691
///
692-
/// When the number is negative, zero, or if the base is not at least 2;
692+
/// When the number is zero, or if the base is not at least 2;
693693
/// it panics in debug mode and the return value is 0 in release mode.
694694
///
695695
/// # Examples
@@ -722,7 +722,7 @@ macro_rules! uint_impl {
722722
///
723723
/// # Panics
724724
///
725-
/// When the number is negative or zero it panics in debug mode and
725+
/// When the number is zero it panics in debug mode and
726726
/// the return value is 0 in release mode.
727727
///
728728
/// # Examples
@@ -755,7 +755,7 @@ macro_rules! uint_impl {
755755
///
756756
/// # Panics
757757
///
758-
/// When the number is negative or zero it panics in debug mode and the
758+
/// When the number is zero it panics in debug mode and the
759759
/// return value is 0 in release mode.
760760
///
761761
/// # Example

0 commit comments

Comments
 (0)