aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib
diff options
context:
space:
mode:
authorZachary Scott <e@zzak.io>2014-12-20 14:52:26 -0800
committerZachary Scott <e@zzak.io>2014-12-20 14:52:26 -0800
commit06e1881fd3c1a2c96d24ec92ea8449305b89334a (patch)
tree8c9208e585f58ebe2f69e12fddad108f7e030ec6 /activesupport/lib
parentd1c30f95769e5355a67278aa06c1c3b7c3f3d33c (diff)
downloadrails-06e1881fd3c1a2c96d24ec92ea8449305b89334a.tar.gz
rails-06e1881fd3c1a2c96d24ec92ea8449305b89334a.tar.bz2
rails-06e1881fd3c1a2c96d24ec92ea8449305b89334a.zip
Fix syntax error with RDoc directive,
this should be `:nodoc:` in order to be parsed.
Diffstat (limited to 'activesupport/lib')
-rw-r--r--activesupport/lib/active_support/duration.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/activesupport/lib/active_support/duration.rb b/activesupport/lib/active_support/duration.rb
index 0de1d2c7df..bcb415f6d3 100644
--- a/activesupport/lib/active_support/duration.rb
+++ b/activesupport/lib/active_support/duration.rb
@@ -98,7 +98,7 @@ module ActiveSupport
to_i
end
- def respond_to_missing?(method, include_private=false) #:nodoc
+ def respond_to_missing?(method, include_private=false) #:nodoc:
@value.respond_to?(method, include_private)
end