From b1fac3a5e17d8efc7aa2f5ca48f7c0e9c63e5505 Mon Sep 17 00:00:00 2001 From: Mara Bos Date: Wed, 24 Mar 2021 22:54:04 +0100 Subject: [PATCH] Bump debug_non_exhaustive stabilization to 1.53. --- library/core/src/fmt/builders.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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).