Skip to content

Commit 7343f74

Browse files
authored
Rollup merge of rust-lang#107720 - tshepang:consistency, r=Mark-Simulacrum
end entry paragraph with a period (.)
2 parents 7c4e6ed + c58202e commit 7343f74

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

library/core/src/num/uint_macros.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ macro_rules! uint_impl {
1818
pub const MIN: Self = 0;
1919

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

0 commit comments

Comments
 (0)