From 40c957ba2153bc60aec95924b56dca9bf52c77ee Mon Sep 17 00:00:00 2001 From: Kazuhiro NISHIYAMA Date: Mon, 19 May 2025 13:27:50 +0900 Subject: [PATCH] Fix a typo and capitalize a character --- NEWS.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/NEWS.md b/NEWS.md index c08acd3bf8..db8aa37c15 100644 --- a/NEWS.md +++ b/NEWS.md @@ -52,7 +52,7 @@ The following bundled gems are promoted from default gems. We only list stdlib changes that are notable feature changes. -Other changes are listed in the following sections. we also listed release history from the previous bundled version that is Ruby 3.3.0 if it has GitHub releases. +Other changes are listed in the following sections. We also listed release history from the previous bundled version that is Ruby 3.3.0 if it has GitHub releases. The following default gem is added. @@ -110,7 +110,7 @@ The following bundled gems are updated. using `RUBY_IO_MODE_EXTERNAL` and use `rb_io_close(io)` to close it (this also interrupts and waits for all pending operations on the `IO` instance). Directly closing file descriptors does not interrupt pending - operations, and may lead to undefined beahviour. In other words, if two + operations, and may lead to undefined behaviour. In other words, if two `IO` objects share the same file descriptor, closing one does not affect the other. [[Feature #18455]]