1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

Fix typos in Ractor README.

This commit is contained in:
Tom Schady 2020-09-04 11:36:48 -05:00 committed by Marc-André Lafortune
parent 1c8fe90760
commit de30450d91
Notes: git 2020-09-05 01:42:00 +09:00

View file

@ -1,6 +1,6 @@
# Ractor - Ruby's Actor-like concurrent abstraction # Ractor - Ruby's Actor-like concurrent abstraction
Ractor is designed to provide a parallel execution feature fo Ruby without thread-safety concerns. Ractor is designed to provide a parallel execution feature of Ruby without thread-safety concerns.
## Summary ## Summary
@ -351,7 +351,7 @@ Multiple Ractors can send to one Ractor.
TODO: Current `Ractor.select()` has same issue of `select(2)`, so this interface should be refined. TODO: Current `Ractor.select()` has same issue of `select(2)`, so this interface should be refined.
TODO: `select` syntax of go-language uses round-robbin technique to make fair scheduling. Now `Ractor.select()` doesn't use it. TODO: `select` syntax of go-language uses round-robin technique to make fair scheduling. Now `Ractor.select()` doesn't use it.
### Closing Ractor's ports ### Closing Ractor's ports