summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorStan Lo <stan001212@gmail.com>2021-09-01 00:58:42 +0800
committerHiroshi SHIBATA <hsbt@ruby-lang.org>2021-09-01 09:15:57 +0900
commitfe7aaa94b48645d58789979d59b093aafced7bdb (patch)
tree588ace72903df703ccb6e2e6dd5def2238494903 /lib
parentd3155e3632b8d967c99863de993e793e52bd59c6 (diff)
Small grammar fixes
Notes
Notes: Merged: https://github.com/ruby/ruby/pull/4792
Diffstat (limited to 'lib')
-rw-r--r--lib/tempfile.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/tempfile.rb b/lib/tempfile.rb
index 1577e45bec..c1b696c4cf 100644
--- a/lib/tempfile.rb
+++ b/lib/tempfile.rb
@@ -36,9 +36,9 @@ require 'tmpdir'
#
# When a Tempfile object is garbage collected, or when the Ruby interpreter
# exits, its associated temporary file is automatically deleted. This means
-# that's it's unnecessary to explicitly delete a Tempfile after use, though
-# it's good practice to do so: not explicitly deleting unused Tempfiles can
-# potentially leave behind large amounts of tempfiles on the filesystem
+# that it's unnecessary to explicitly delete a Tempfile after use, though
+# it's a good practice to do so: not explicitly deleting unused Tempfiles can
+# potentially leave behind a large number of temp files on the filesystem
# until they're garbage collected. The existence of these temp files can make
# it harder to determine a new Tempfile filename.
#