[DOC] Fix indentation

RDoc markdown parser requires exact 4 spaces or tab as indentation.
This commit is contained in:
Nobuyoshi Nakada 2024-12-23 21:53:47 +09:00
parent a438c37ce9
commit 4e12c25778
No known key found for this signature in database
GPG Key ID: 3582D74E1FEE4465
Notes: git 2024-12-23 13:01:03 +00:00

26
NEWS.md
View File

@ -362,27 +362,27 @@ The following bundled gems are promoted from default gems.
* `Kernel#Float()` now accepts a decimal string with decimal part omitted. [[Feature #20705]]
```rb
Float("1.") #=> 1.0 (previously, an ArgumentError was raised)
Float("1.E-1") #=> 0.1 (previously, an ArgumentError was raised)
```
```rb
Float("1.") #=> 1.0 (previously, an ArgumentError was raised)
Float("1.E-1") #=> 0.1 (previously, an ArgumentError was raised)
```
* `String#to_f` now accepts a decimal string with decimal part omitted. [[Feature #20705]]
Note that the result changes when an exponent is specified.
```rb
"1.".to_f #=> 1.0
"1.E-1".to_f #=> 0.1 (previously, 1.0 was returned)
```
```rb
"1.".to_f #=> 1.0
"1.E-1".to_f #=> 0.1 (previously, 1.0 was returned)
```
* `Object#singleton_method` now returns methods in modules prepended to or included in the
receiver's singleton class. [[Bug #20620]]
```rb
o = Object.new
o.extend(Module.new{def a = 1})
o.singleton_method(:a).call #=> 1
```
```rb
o = Object.new
o.extend(Module.new{def a = 1})
o.singleton_method(:a).call #=> 1
```
* `Refinement#refined_class` has been removed. [[Feature #19714]]