Skip to content

Commit 5b9609c

Browse files
authored
Merge pull request #2564 from Beyarz/master
Fixed spelling
2 parents 0301b8d + ccf7d95 commit 5b9609c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

en/news/_posts/2020-12-08-ruby-3-0-0-preview2-released.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -92,9 +92,9 @@ You can make multiple ractors and you can run them in parallel. Ractor enables y
9292

9393
To limit sharing of objects, Ractor introduces several restrictions to the Ruby's syntax (without multiple Ractors, there is no restriction).
9494

95-
The specification and implmentation are not matured and may be changed in the future, so this feature is marked as experimental and show the "experimental feature" warning when the first `Ractor.new`.
95+
The specification and implementation are not matured and may be changed in the future, so this feature is marked as experimental and show the "experimental feature" warning when the first `Ractor.new`.
9696

97-
The following small program calculates `n.prime?` (`n` is relatively a big integer) in parallel with two ractors. You will confirm that the program execution is about x2 times faster ompare with the sequential program on the parallel computer.
97+
The following small program calculates `n.prime?` (`n` is relatively a big integer) in parallel with two ractors. You will confirm that the program execution is about x2 times faster compared to the sequential program on the parallel computer.
9898

9999
``` ruby
100100
require 'prime'

0 commit comments

Comments
 (0)