aboutsummaryrefslogtreecommitdiffstats
path: root/activesupport/lib
diff options
context:
space:
mode:
authorRobin Dupret <robin.dupret@gmail.com>2015-07-28 12:25:39 +0200
committerRobin Dupret <robin.dupret@gmail.com>2015-07-28 15:05:41 +0200
commite18bf1dc49222e25d5a485e876e13fc3e57c6eca (patch)
tree389158e6715e6a9aca347d4d0b78ef4c76a4f016 /activesupport/lib
parent6f4421e4d981be86c04b13fb6965eaaea1c44644 (diff)
downloadrails-e18bf1dc49222e25d5a485e876e13fc3e57c6eca.tar.gz
rails-e18bf1dc49222e25d5a485e876e13fc3e57c6eca.tar.bz2
rails-e18bf1dc49222e25d5a485e876e13fc3e57c6eca.zip
Tiny documentation edits [ci skip]
Diffstat (limited to 'activesupport/lib')
-rw-r--r--activesupport/lib/active_support/core_ext/object/duplicable.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/activesupport/lib/active_support/core_ext/object/duplicable.rb b/activesupport/lib/active_support/core_ext/object/duplicable.rb
index 6fc0cb53f0..befa5aee21 100644
--- a/activesupport/lib/active_support/core_ext/object/duplicable.rb
+++ b/activesupport/lib/active_support/core_ext/object/duplicable.rb
@@ -81,7 +81,7 @@ class BigDecimal
# BigDecimals are duplicable:
#
# BigDecimal.new("1.2").duplicable? # => true
- # BigDecimal.new("1.2").dup # => #<BigDecimal:7f9d698eee10,'0.12E1',18(18)>
+ # BigDecimal.new("1.2").dup # => #<BigDecimal:...,'0.12E1',18(18)>
def duplicable?
true
end