diff options
author | Nobuyoshi Nakada <[email protected]> | 2025-06-17 18:41:40 +0900 |
---|---|---|
committer | git <[email protected]> | 2025-06-17 09:41:45 +0000 |
commit | 9647dca143ef614cdb1c8cf610d0aa63bf73e012 (patch) | |
tree | ed487b09d6875ccab871997df4c38298c683da72 | |
parent | e9d35671d2c584e6a77a00fa4aacc5593b2fcb14 (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.rb | 2 |
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" |