summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorSteven Nunez <octosteve@github.com>2022-01-30 17:59:10 -0500
committerGitHub <noreply@github.com>2022-01-31 07:59:10 +0900
commitb01657c4707eadd9de9573ce9818d0b5f0fe3047 (patch)
treebb3266a97d091f4e6d50bc89ea9a7051baaab7f8 /doc
parentf924e05b68f30371434d390a3e97f874a055e5c3 (diff)
[DOC] Fix case for new sentence.
Notes
Notes: Merged: https://github.com/ruby/ruby/pull/5505 Merged-By: nobu <nobu@ruby-lang.org>
Diffstat (limited to 'doc')
-rw-r--r--doc/ractor.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/ractor.md b/doc/ractor.md
index f5b1fb5403..843754c263 100644
--- a/doc/ractor.md
+++ b/doc/ractor.md
@@ -179,7 +179,7 @@ end
Communication between Ractors is achieved by sending and receiving messages. There are two ways to communicate with each other.
* (1) Message sending/receiving
- * (1-1) push type send/receive (sender knows receiver). similar to the Actor model.
+ * (1-1) push type send/receive (sender knows receiver). Similar to the Actor model.
* (1-2) pull type yield/take (receiver knows sender).
* (2) Using shareable container objects
* Ractor::TVar gem ([ko1/ractor-tvar](https://github.com/ko1/ractor-tvar))