aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source/active_support_core_extensions.md
diff options
context:
space:
mode:
authorPrathamesh Sonpatki <csonpatki@gmail.com>2013-05-12 09:47:41 +0530
committerPrathamesh Sonpatki <csonpatki@gmail.com>2013-05-12 09:47:41 +0530
commit60a961f3b639ffb4f83fcdff89e93a200f09af60 (patch)
tree3dd79979c712cd0a1f2057739b12b5c9bbe15b8e /guides/source/active_support_core_extensions.md
parent947cc874be3e652eb76af1808fcf2fa692f4ace6 (diff)
downloadrails-60a961f3b639ffb4f83fcdff89e93a200f09af60.tar.gz
rails-60a961f3b639ffb4f83fcdff89e93a200f09af60.tar.bz2
rails-60a961f3b639ffb4f83fcdff89e93a200f09af60.zip
ruby -> Ruby
Diffstat (limited to 'guides/source/active_support_core_extensions.md')
-rw-r--r--guides/source/active_support_core_extensions.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/active_support_core_extensions.md b/guides/source/active_support_core_extensions.md
index 54f4b79b3b..95c67d427a 100644
--- a/guides/source/active_support_core_extensions.md
+++ b/guides/source/active_support_core_extensions.md
@@ -166,7 +166,7 @@ NOTE: Defined in `active_support/core_ext/object/duplicable.rb`.
### `deep_dup`
-The `deep_dup` method returns deep copy of a given object. Normally, when you `dup` an object that contains other objects, ruby does not `dup` them, so it creates a shallow copy of the object. If you have an array with a string, for example, it will look like this:
+The `deep_dup` method returns deep copy of a given object. Normally, when you `dup` an object that contains other objects, Ruby does not `dup` them, so it creates a shallow copy of the object. If you have an array with a string, for example, it will look like this:
```ruby
array = ['string']