summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorTom Schady <tschady@greenkeytech.com>2020-09-04 11:36:48 -0500
committerMarc-André Lafortune <github@marc-andre.ca>2020-09-04 12:41:35 -0400
commitde30450d91a8dda9dd415512ba5a1709704cae12 (patch)
tree5c0d385658ea3bb3e11bea0d658cf8c29b86f11d /doc
parent1c8fe90760cb11eb1000c49145043a1c78f24fd5 (diff)
Fix typos in Ractor README.
Notes
Notes: Merged: https://github.com/ruby/ruby/pull/3516
Diffstat (limited to 'doc')
-rw-r--r--doc/ractor.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/ractor.md b/doc/ractor.md
index cb8f6aae4b..42a0be9651 100644
--- a/doc/ractor.md
+++ b/doc/ractor.md
@@ -1,6 +1,6 @@
# 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
@@ -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: `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