diff options
author | Xavier Noria <fxn@hashref.com> | 2015-09-06 10:57:55 +0200 |
---|---|---|
committer | Xavier Noria <fxn@hashref.com> | 2015-09-06 10:57:55 +0200 |
commit | bc1f0c2e36ee705023dcbd513d99f834f8262ea3 (patch) | |
tree | 1df1ac4d57834b216afd5ce7fed0421414de2842 /activesupport/lib | |
parent | f443ae670de9ce9bcb8c00adde08405d2cfd70db (diff) | |
parent | 953a83e9185cf7c4aef457d2e9d50d9c9aea0182 (diff) | |
download | rails-bc1f0c2e36ee705023dcbd513d99f834f8262ea3.tar.gz rails-bc1f0c2e36ee705023dcbd513d99f834f8262ea3.tar.bz2 rails-bc1f0c2e36ee705023dcbd513d99f834f8262ea3.zip |
Merge pull request #21514 from ronakjangir47/remove_extra_the
Removed Extra ‘the’ [ci skip]
Diffstat (limited to 'activesupport/lib')
-rw-r--r-- | activesupport/lib/active_support/core_ext/file/atomic.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/activesupport/lib/active_support/core_ext/file/atomic.rb b/activesupport/lib/active_support/core_ext/file/atomic.rb index ab635f6db8..948d647875 100644 --- a/activesupport/lib/active_support/core_ext/file/atomic.rb +++ b/activesupport/lib/active_support/core_ext/file/atomic.rb @@ -11,7 +11,7 @@ class File # This method needs to create a temporary file. By default it will create it # in the same directory as the destination file. If you don't like this # behaviour you can provide a different directory but it must be on the - # same physical filesystem as the the file you're trying to write. + # same physical filesystem as the file you're trying to write. # # File.atomic_write('/data/something.important', '/data/tmp') do |file| # file.write('hello') |