diff options
| author | Mara Bos <m-ou.se@m-ou.se> | 2021-03-24 22:54:04 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2021-03-24 22:54:04 +0100 |
| commit | b1fac3a5e17d8efc7aa2f5ca48f7c0e9c63e5505 (patch) | |
| tree | fbc5d5f3db1f1a7b3d1cf9ccee87f4229e02d1f4 | |
| parent | b8e498162eb776bf02d98be2e23784cd7f2422be (diff) | |
| download | rust-b1fac3a5e17d8efc7aa2f5ca48f7c0e9c63e5505.tar.gz rust-b1fac3a5e17d8efc7aa2f5ca48f7c0e9c63e5505.zip | |
Bump debug_non_exhaustive stabilization to 1.53.
| -rw-r--r-- | library/core/src/fmt/builders.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/library/core/src/fmt/builders.rs b/library/core/src/fmt/builders.rs index 63abf75641f..475ebcf07d5 100644 --- a/library/core/src/fmt/builders.rs +++ b/library/core/src/fmt/builders.rs @@ -185,7 +185,7 @@ impl<'a, 'b: 'a> DebugStruct<'a, 'b> { /// "Bar { bar: 10, .. }", /// ); /// ``` - #[stable(feature = "debug_non_exhaustive", since = "1.52.0")] + #[stable(feature = "debug_non_exhaustive", since = "1.53.0")] pub fn finish_non_exhaustive(&mut self) -> fmt::Result { self.result = self.result.and_then(|_| { // Draw non-exhaustive dots (`..`), and open brace if necessary (no fields). |
