diff options
author | Kazuhiro NISHIYAMA <[email protected]> | 2023-12-01 16:45:17 +0900 |
---|---|---|
committer | Kazuhiro NISHIYAMA <[email protected]> | 2023-12-01 16:45:17 +0900 |
commit | 062b59ba9aa0f6d5057e0187a04d11b75d623952 (patch) | |
tree | f63618cebf67fa897bdf749d2c1d8d08dba943c1 | |
parent | 60568e971e1e7061bfe365e1fbf8a70a598c241a (diff) |
Fix typos [ci skip]
-rw-r--r-- | NEWS.md | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -313,7 +313,7 @@ changelog for details of the default gems or bundled gems. * RJIT exists only for experimental purposes. * You should keep using YJIT in production. -### M:N Therad scheduler +### M:N Thread scheduler * M:N Thread scheduler is introduced. [[Feature #19842]] * Background: Ruby 1.8 and before, M:1 thread scheduler (M Ruby threads @@ -327,7 +327,7 @@ changelog for details of the default gems or bundled gems. need same number of native threads as Ruby threads (similar to the M:1 thread scheduler). Also our M:N threads supports blocking operations well same as 1:1 threads. See the ticket for more details. - Our M:N thread scheduler refers on the gorotuine scheduler in the + Our M:N thread scheduler refers on the goroutine scheduler in the Go language. * In a ractor, only 1 thread can run in a same time because of implementation. Therefore, applications that use only one Ractor |