aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport
diff options
context:
space:
mode:
authorGenadi Samokovarov <gsamokovarov@gmail.com>2014-09-19 23:30:59 +0200
committerGenadi Samokovarov <gsamokovarov@gmail.com>2014-09-19 23:30:59 +0200
commitf37ad331089f64ab0386e8ac94b6626b45c38a1e (patch)
tree3238df49e494d4fc56a2e60d2a52d27fe3e88320 /activesupport
parent620f4a4fc962c863b91a51876ffdf58f33bedb9c (diff)
downloadrails-f37ad331089f64ab0386e8ac94b6626b45c38a1e.tar.gz
rails-f37ad331089f64ab0386e8ac94b6626b45c38a1e.tar.bz2
rails-f37ad331089f64ab0386e8ac94b6626b45c38a1e.zip
[ci skip] Reword a comment in concern's documentation
Nothing biggie. Skimmed through `ActiveSupport::Concern` docs these days and this one comment seemed a bit off.
Diffstat (limited to 'activesupport')
-rw-r--r--activesupport/lib/active_support/concern.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/activesupport/lib/active_support/concern.rb b/activesupport/lib/active_support/concern.rb
index 9d5cee54e3..342d3a9d52 100644
--- a/activesupport/lib/active_support/concern.rb
+++ b/activesupport/lib/active_support/concern.rb
@@ -95,7 +95,7 @@ module ActiveSupport
# end
#
# class Host
- # include Bar # works, Bar takes care now of its dependencies
+ # include Bar # It works, now Bar takes care of its dependencies
# end
module Concern
class MultipleIncludedBlocks < StandardError #:nodoc: