diff options
author | Zachary Scott <e@zzak.io> | 2014-12-20 14:52:26 -0800 |
---|---|---|
committer | Zachary Scott <e@zzak.io> | 2014-12-20 14:52:26 -0800 |
commit | 06e1881fd3c1a2c96d24ec92ea8449305b89334a (patch) | |
tree | 8c9208e585f58ebe2f69e12fddad108f7e030ec6 /activesupport/lib | |
parent | d1c30f95769e5355a67278aa06c1c3b7c3f3d33c (diff) | |
download | rails-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.rb | 2 |
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 |