summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLorenzo Zabot <[email protected]>2025-03-29 10:45:59 +0100
committerHiroshi SHIBATA <[email protected]>2025-03-31 09:16:18 +0900
commita203603be0ac6d95fa4740c0c763d9cad46c844c (patch)
tree37f14bad4bb97b368e4c701a4072abae8e871cd6
parentd7e46543b5fc34487dbc2c784412af015dbe67f4 (diff)
Correct typo in Ractor comment
Notes
Notes: Merged: https://github.com/ruby/ruby/pull/13011
-rw-r--r--ractor.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/ractor.rb b/ractor.rb
index 8af54f73d4..caeca88644 100644
--- a/ractor.rb
+++ b/ractor.rb
@@ -860,7 +860,7 @@ class Ractor
# call-seq:
# Ractor.store_if_absent(key){ init_block }
#
- # If the correponding value is not set, yield a value with
+ # If the corresponding value is not set, yield a value with
# init_block and store the value in thread-safe manner.
# This method returns corresponding stored value.
#