diff options
author | Andrew White <andrew.white@unboxed.co> | 2017-03-03 13:50:48 +0000 |
---|---|---|
committer | Andrew White <andrew.white@unboxed.co> | 2017-03-03 13:51:22 +0000 |
commit | fd8da7111835f5c2c136216504330ff01b9eafae (patch) | |
tree | c7515c823c0c631394775b99714823ce5752a970 | |
parent | cf11ea0f0de1d1befda8a9b266bb764497b6c4fb (diff) | |
download | rails-fd8da7111835f5c2c136216504330ff01b9eafae.tar.gz rails-fd8da7111835f5c2c136216504330ff01b9eafae.tar.bz2 rails-fd8da7111835f5c2c136216504330ff01b9eafae.zip |
Fix typo in comment
-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 b92891c511..d26bbac511 100644 --- a/activesupport/lib/active_support/duration.rb +++ b/activesupport/lib/active_support/duration.rb @@ -139,7 +139,7 @@ module ActiveSupport end end - # Devides this Duration by a Numeric and returns a new Duration. + # Divides this Duration by a Numeric and returns a new Duration. def /(other) if Numeric === other Duration.new(value / other, parts.map { |type, number| [type, number / other] }) |