aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRafael Mendonça França <rafaelmfranca@gmail.com>2015-09-09 03:56:32 -0300
committerRafael Mendonça França <rafaelmfranca@gmail.com>2015-09-09 03:56:32 -0300
commit8e3ca417e233b91b7d2daefb32417a1f8386795a (patch)
treeabcc8e259fcff4a01780d0556cd988217f68cca0
parentbf4f739e0793c048cdba02e46c76fe2f46202da4 (diff)
parentabd9f2be2a37bdd06d6a9aabc272ce9407d8b462 (diff)
downloadrails-8e3ca417e233b91b7d2daefb32417a1f8386795a.tar.gz
rails-8e3ca417e233b91b7d2daefb32417a1f8386795a.tar.bz2
rails-8e3ca417e233b91b7d2daefb32417a1f8386795a.zip
Merge pull request #21560 from ravindrakumawat/american-style
Rails documentation use american english.[ci skip]
-rw-r--r--activesupport/lib/active_support/core_ext/file/atomic.rb2
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 948d647875..463fd78412 100644
--- a/activesupport/lib/active_support/core_ext/file/atomic.rb
+++ b/activesupport/lib/active_support/core_ext/file/atomic.rb
@@ -10,7 +10,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
+ # behavior you can provide a different directory but it must be on the
# same physical filesystem as the file you're trying to write.
#
# File.atomic_write('/data/something.important', '/data/tmp') do |file|