summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNobuyoshi Nakada <nobu@ruby-lang.org>2024-10-09 00:36:12 +0900
committerNobuyoshi Nakada <nobu@ruby-lang.org>2024-10-09 01:29:07 +0900
commitdf973d956a7171300c75c5646996c28e1bba17d2 (patch)
tree1052603d618c228bd7e96bbf19b30e575f6d94fb
parentded078c2c44e5a1f9f4191a7021cfe394ac93ba2 (diff)
[DOC] Fix typos
Notes
Notes: Merged: https://github.com/ruby/ruby/pull/11833
-rw-r--r--NEWS.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/NEWS.md b/NEWS.md
index a62c8800c2..96c167b369 100644
--- a/NEWS.md
+++ b/NEWS.md
@@ -132,7 +132,7 @@ See GitHub releases like [GitHub Releases of Logger](https://github.com/ruby/log
## Compatibility issues
* Error messages and backtrace displays have been changed.
- * Use a single quote instead of a backtick as a opening quote. [[Feature #16495]]
+ * Use a single quote instead of a backtick as an opening quote. [[Feature #16495]]
* Display a class name before a method name (only when the class has a permanent name). [[Feature #19117]]
* `Kernel#caller`, `Thread::Backtrace::Location`'s methods, etc. are also changed accordingly.
```
@@ -142,7 +142,7 @@ See GitHub releases like [GitHub Releases of Logger](https://github.com/ruby/log
New:
test.rb:1:in 'Object#foo': undefined method 'time' for an instance of Integer
- from test.rb:2:in `<main>'
+ from test.rb:2:in '<main>'
```
* `Hash#inspect` rendering have been changed. [[Bug #20433]]
@@ -169,7 +169,7 @@ See GitHub releases like [GitHub Releases of Logger](https://github.com/ruby/log
[[Feature #15554]]
* Redefining some core methods that are specially optimized by the interpreter
- and JIT like `String.freeze` or `Integer#+` now emits a performance class
+ and JIT like `String#freeze` or `Integer#+` now emits a performance class
warning (`-W:performance` or `Warning[:performance] = true`).
[[Feature #20429]]