summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNobuyoshi Nakada <[email protected]>2025-06-17 18:41:40 +0900
committergit <[email protected]>2025-06-17 09:41:45 +0000
commit9647dca143ef614cdb1c8cf610d0aa63bf73e012 (patch)
treeed487b09d6875ccab871997df4c38298c683da72
parente9d35671d2c584e6a77a00fa4aacc5593b2fcb14 (diff)
[ruby/tempfile] [DOC] Fix a typo
ruby/ruby#13636 https://github.com/ruby/tempfile/commit/366d9ccb8f Co-Authored-By: Tim Smith <[email protected]>
-rw-r--r--lib/tempfile.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/tempfile.rb b/lib/tempfile.rb
index f3213c5684..7292e72c25 100644
--- a/lib/tempfile.rb
+++ b/lib/tempfile.rb
@@ -29,7 +29,7 @@ require 'tmpdir'
# require 'tempfile'
#
# # Tempfile.create with a block
-# # The filename are choosen automatically.
+# # The filename are chosen automatically.
# # (You can specify the prefix and suffix of the filename by an optional argument.)
# Tempfile.create {|f|
# f.puts "foo"