about summary refs log tree commit diff
diff options
context:
space:
mode:
authorGuillaume Gomez <guillaume1.gomez@gmail.com>2021-05-03 15:08:10 +0200
committerGitHub <noreply@github.com>2021-05-03 15:08:10 +0200
commit2604440d8a982d418a1f0a86aba0864c504c5847 (patch)
tree9bb594a9e88af36476ae632cc48a75bd6d89afda
parent377722103e2bb4035ae2d91c090d022a7372fb47 (diff)
parent2247d46b117e60f8eba258372574e212a09432a9 (diff)
downloadrust-2604440d8a982d418a1f0a86aba0864c504c5847.tar.gz
rust-2604440d8a982d418a1f0a86aba0864c504c5847.zip
Rollup merge of #84856 - kornelski:enomem, r=JohnTitor
Correct stability of ErrorKind::OutOfMemory

Fix for #84744
-rw-r--r--library/std/src/io/error.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/library/std/src/io/error.rs b/library/std/src/io/error.rs
index ae896d1240e..56e6f08268c 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,
 }