diff options
| author | Matthias Krüger <matthias.krueger@famsik.de> | 2023-02-06 21:16:42 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-02-06 21:16:42 +0100 |
| commit | 7343f748cb38db7f4cdd93f275684a6ef54cdcd9 (patch) | |
| tree | 5869ec100d31e54b7f31f1bec279c3a289f62579 | |
| parent | 7c4e6edb056d00dd02ac7caa8acacb125d79dd28 (diff) | |
| parent | c58202eb9b2c196e922fba56b89283b63b6afe69 (diff) | |
| download | rust-7343f748cb38db7f4cdd93f275684a6ef54cdcd9.tar.gz rust-7343f748cb38db7f4cdd93f275684a6ef54cdcd9.zip | |
Rollup merge of #107720 - tshepang:consistency, r=Mark-Simulacrum
end entry paragraph with a period (.)
| -rw-r--r-- | library/core/src/num/uint_macros.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/library/core/src/num/uint_macros.rs b/library/core/src/num/uint_macros.rs index 1c97c468628..dcc0835ecd6 100644 --- a/library/core/src/num/uint_macros.rs +++ b/library/core/src/num/uint_macros.rs @@ -18,7 +18,7 @@ macro_rules! uint_impl { pub const MIN: Self = 0; /// The largest value that can be represented by this integer type - #[doc = concat!("(2<sup>", $BITS, "</sup> − 1", $bound_condition, ")")] + #[doc = concat!("(2<sup>", $BITS, "</sup> − 1", $bound_condition, ").")] /// /// # Examples /// |
