From de30450d91a8dda9dd415512ba5a1709704cae12 Mon Sep 17 00:00:00 2001 From: Tom Schady Date: Fri, 4 Sep 2020 11:36:48 -0500 Subject: [PATCH] Fix typos in Ractor README. --- doc/ractor.md | 4 ++-- 1 file 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