summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNobuyoshi Nakada <nobu@ruby-lang.org>2025-05-19 22:49:22 +0900
committerNobuyoshi Nakada <nobu@ruby-lang.org>2025-05-31 16:49:21 +0900
commit9dc9d5f5a6a698274babe596552020bcd2c37928 (patch)
treed134ab735883c30603c3e95da981c74d92f46a88
parent57d10c6e806c4572eb75084462ecdf883591f4ea (diff)
[DOC] Fix indentation
RDoc markdown parser requires exact 4 spaces or tab as indentation. Also the first nested bullet list must be separated from the enclosing bullet list item by a blank line.
-rw-r--r--NEWS.md17
1 files changed, 10 insertions, 7 deletions
diff --git a/NEWS.md b/NEWS.md
index b1e9a55ce0..38b71f493d 100644
--- a/NEWS.md
+++ b/NEWS.md
@@ -43,13 +43,14 @@ Note: We're only listing outstanding class updates.
2.times{ p port2.receive } #=> 11, 12
```
- `Ractor::Port` provides the following methods:
+ `Ractor::Port` provides the following methods:
+
* `Ractor::Port#receive`
* `Ractor::Port#send` (or `Ractor::Port#<<`)
* `Ractor::Port#close`
* `Ractor::Port#closed?`
- As result, `Ractor.yield` and `Ractor#take` were removed.
+ As result, `Ractor.yield` and `Ractor#take` were removed.
* `Ractor#join` and `Ractor#value` were added to wait for the
termination of a Ractor. These are similar to `Thread#join`
@@ -145,11 +146,13 @@ The following bundled gems are updated.
## Compatibility issues
* The following methdos were removed from Ractor due because of `Ractor::Port`:
- * `Ractor.yield`
- * `Ractor#take`
- * `Ractor#close_incoming`
- * `Ractor#close_outgoging`
- [[Feature #21262]]
+
+ * `Ractor.yield`
+ * `Ractor#take`
+ * `Ractor#close_incoming`
+ * `Ractor#close_outgoging`
+
+ [[Feature #21262]]
## Stdlib compatibility issues