diff options
| author | Joshua Liebow-Feeser <joshlf@users.noreply.github.com> | 2022-03-09 14:00:08 -0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-03-09 14:00:08 -0800 |
| commit | 7f88cd20ff5d3616b7bab5a4b3b0c942e91904a9 (patch) | |
| tree | 54dab2acd35fe671e926bbff4588a2a74266d44f | |
| parent | b142720322155ddb5aa4cac8b01ab5633b4cc854 (diff) | |
| download | rust-7f88cd20ff5d3616b7bab5a4b3b0c942e91904a9.tar.gz rust-7f88cd20ff5d3616b7bab5a4b3b0c942e91904a9.zip | |
Add missing closing parenthesis
| -rw-r--r-- | library/core/src/num/nonzero.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/library/core/src/num/nonzero.rs b/library/core/src/num/nonzero.rs index 8b247daf8a7..1e5cfdd56ca 100644 --- a/library/core/src/num/nonzero.rs +++ b/library/core/src/num/nonzero.rs @@ -37,7 +37,7 @@ macro_rules! nonzero_integers { /// /// # Layout /// - #[doc = concat!("`", stringify!($Ty), "` is guaranteed to have the same layout and bit validity as `", stringify!($Int), "`"] + #[doc = concat!("`", stringify!($Ty), "` is guaranteed to have the same layout and bit validity as `", stringify!($Int), "`")] /// with the exception that `0` is not a valid instance. #[$stability] #[derive(Copy, Clone, Eq, PartialEq, Ord, PartialOrd, Hash)] |
