Skip to content

Commit 7236019

Browse files
committed
end entry paragraph with a period (.)
1 parent f55b002 commit 7236019

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

library/core/src/num/int_macros.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ macro_rules! int_impl {
55
$to_xe_bytes_doc:expr, $from_xe_bytes_doc:expr,
66
$bound_condition:expr) => {
77
/// The smallest value that can be represented by this integer type
8-
#[doc = concat!("(&minus;2<sup>", $BITS_MINUS_ONE, "</sup>", $bound_condition, ")")]
8+
#[doc = concat!("(&minus;2<sup>", $BITS_MINUS_ONE, "</sup>", $bound_condition, ").")]
99
///
1010
/// # Examples
1111
///
@@ -18,7 +18,7 @@ macro_rules! int_impl {
1818
pub const MIN: Self = !0 ^ ((!0 as $UnsignedT) >> 1) as Self;
1919

2020
/// The largest value that can be represented by this integer type
21-
#[doc = concat!("(2<sup>", $BITS_MINUS_ONE, "</sup> &minus; 1", $bound_condition, ")")]
21+
#[doc = concat!("(2<sup>", $BITS_MINUS_ONE, "</sup> &minus; 1", $bound_condition, ").")]
2222
///
2323
/// # Examples
2424
///

0 commit comments

Comments
 (0)