about summary refs log tree commit diff
diff options
context:
space:
mode:
authorMark Rousskov <mark.simulacrum@gmail.com>2022-05-17 15:33:15 -0400
committerGitHub <noreply@github.com>2022-05-17 15:33:15 -0400
commit23a4614238b48984dbc8fbcdbb9062b11f24eedb (patch)
tree7d3358614aba4583998d112b2435f13b4c3bf851
parent4d523a8149ff697ffe1770358291e2b8d8b58fd7 (diff)
downloadrust-23a4614238b48984dbc8fbcdbb9062b11f24eedb.tar.gz
rust-23a4614238b48984dbc8fbcdbb9062b11f24eedb.zip
Adjust language
Co-authored-by: Who? Me?! <mark-i-m@users.noreply.github.com>
-rw-r--r--RELEASES.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/RELEASES.md b/RELEASES.md
index af9a071aecc..0e118fb939f 100644
--- a/RELEASES.md
+++ b/RELEASES.md
@@ -22,7 +22,7 @@ Libraries
 
 - [`ManuallyDrop<T>` is now documented to have the same layout as `T`][88375]
 - [`#[ignore = "…"]` messages are printed when running tests][92714]
-- [Consistently present absent stdio handles on Windows as NULL handles][93263]
+- [Consistently show absent stdio handles on Windows as NULL handles][93263]
 - [Make `std::io::stdio::lock()` return `'static` handles.][93965] Previously, the creation of locked handles to stdin/stdout/stderr would borrow the handles being locked, which prevented writing `let out = std::io::stdout().lock();` because `out` would outlive the return value of `stdout()`. Such code now works, eliminating a common pitfall that affected many Rust users.
 - [`Vec::from_raw_parts` is now less restrictive about its inputs][95016]
 - [`std::thread::available_parallelism` now takes cgroup quotas into account.][92697] Since `available_parallelism` is often used to create a thread pool for parallel computation, which may be CPU-bound for performance, `available_parallelism` will return a value consistent with the ability to use that many threads continuously, if possible. For instance, in a container with 8 virtual CPUs but quotas only allowing for 50% usage, `available_parallelism` will return 4.