From 2247d46b117e60f8eba258372574e212a09432a9 Mon Sep 17 00:00:00 2001 From: Kornel Date: Mon, 3 May 2021 10:28:19 +0100 Subject: [PATCH] Correct stability of ErrorKind::OutOfMemory --- library/std/src/io/error.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/std/src/io/error.rs b/library/std/src/io/error.rs index ae896d1240ea5..56e6f08268ca3 100644 --- a/library/std/src/io/error.rs +++ b/library/std/src/io/error.rs @@ -189,7 +189,7 @@ pub enum ErrorKind { /// An operation could not be completed, because it failed /// to allocate enough memory. - #[stable(feature = "out_of_memory_error", since = "1.53.0")] + #[stable(feature = "out_of_memory_error", since = "1.54.0")] OutOfMemory, }