mirror of
https://github.com/rust-lang/rust.git
synced 2025-04-29 03:27:44 +00:00
end entry paragraph with a period (.)
This commit is contained in:
parent
f55b0022db
commit
72360191f1
@ -5,7 +5,7 @@ macro_rules! int_impl {
|
|||||||
$to_xe_bytes_doc:expr, $from_xe_bytes_doc:expr,
|
$to_xe_bytes_doc:expr, $from_xe_bytes_doc:expr,
|
||||||
$bound_condition:expr) => {
|
$bound_condition:expr) => {
|
||||||
/// The smallest value that can be represented by this integer type
|
/// The smallest value that can be represented by this integer type
|
||||||
#[doc = concat!("(−2<sup>", $BITS_MINUS_ONE, "</sup>", $bound_condition, ")")]
|
#[doc = concat!("(−2<sup>", $BITS_MINUS_ONE, "</sup>", $bound_condition, ").")]
|
||||||
///
|
///
|
||||||
/// # Examples
|
/// # Examples
|
||||||
///
|
///
|
||||||
@ -18,7 +18,7 @@ macro_rules! int_impl {
|
|||||||
pub const MIN: Self = !0 ^ ((!0 as $UnsignedT) >> 1) as Self;
|
pub const MIN: Self = !0 ^ ((!0 as $UnsignedT) >> 1) as Self;
|
||||||
|
|
||||||
/// The largest value that can be represented by this integer type
|
/// The largest value that can be represented by this integer type
|
||||||
#[doc = concat!("(2<sup>", $BITS_MINUS_ONE, "</sup> − 1", $bound_condition, ")")]
|
#[doc = concat!("(2<sup>", $BITS_MINUS_ONE, "</sup> − 1", $bound_condition, ").")]
|
||||||
///
|
///
|
||||||
/// # Examples
|
/// # Examples
|
||||||
///
|
///
|
||||||
|
Loading…
Reference in New Issue
Block a user