Skip to content
Closed
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
4 changes: 2 additions & 2 deletions library/core/src/num/int_macros.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1827,7 +1827,7 @@ macro_rules! int_impl {
}
}

/// Returns the square root of the number, rounded down.
/// Returns non-negative the square root of the number, rounded down.
///
/// Returns `None` if `self` is negative.
///
Expand Down Expand Up @@ -3122,7 +3122,7 @@ macro_rules! int_impl {
}
}

/// Returns the square root of the number, rounded down.
/// Returns the non-negative square root of the number, rounded down.
///
/// # Panics
///
Expand Down
Loading