summaryrefslogtreecommitdiff
path: root/NEWS.md
diff options
context:
space:
mode:
authorRadosław Bułat <radek.bulat@gmail.com>2020-12-18 17:40:31 +0100
committerYusuke Endoh <mame@ruby-lang.org>2020-12-19 09:22:26 +0900
commitd40d95296d0947edf513ad5bc7d4bf338b2e3877 (patch)
treea6973cc038f7575147474a04ebf6158ec889ecd1 /NEWS.md
parent76e88480371469400346fca609efe67096813915 (diff)
Feature 17314: update docs and NEWS about attr* methods returning array of symbols
Diffstat (limited to 'NEWS.md')
-rw-r--r--NEWS.md5
1 files changed, 5 insertions, 0 deletions
diff --git a/NEWS.md b/NEWS.md
index 11d33d4dbb..39ddf376c9 100644
--- a/NEWS.md
+++ b/NEWS.md
@@ -249,6 +249,10 @@ Outstanding ones only.
p C.ancestors #=> [C, M1, M2, Object, Kernel, BasicObject]
```
+ * Module#attr_accessor, Module#attr_reader, Module#attr_writer and Module#attr
+ methods now return array of defined methods names as symbols.
+ [[Feature #17314]]
+
* Mutex
* `Mutex` is now acquired per-`Fiber` instead of per-`Thread`. This change
@@ -704,3 +708,4 @@ end
[Feature #17351]: https://bugs.ruby-lang.org/issues/17351
[Feature #17371]: https://bugs.ruby-lang.org/issues/17371
[GH-2991]: https://github.com/ruby/ruby/pull/2991
+[Feature #17314]: https://bugs.ruby-lang.org/issues/17314