aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source/3_0_release_notes.md
diff options
context:
space:
mode:
authorAkshay Vishnoi <akshay.vishnoi@vinsol.com>2014-09-16 01:15:00 +0530
committerAkshay Vishnoi <akshay.vishnoi@vinsol.com>2014-09-16 01:15:00 +0530
commit4a634e5f9039d1a0f709227ea6c9ab3c1d5c45e1 (patch)
tree21b2a0477f9698c1b3a49e82ffb7e7e4137571f1 /guides/source/3_0_release_notes.md
parent62955c77bf380fe39005c1a7de8b8fde769af2cd (diff)
downloadrails-4a634e5f9039d1a0f709227ea6c9ab3c1d5c45e1.tar.gz
rails-4a634e5f9039d1a0f709227ea6c9ab3c1d5c45e1.tar.bz2
rails-4a634e5f9039d1a0f709227ea6c9ab3c1d5c45e1.zip
[ci skip] Fix typo `equals to` --> `equal to`
Diffstat (limited to 'guides/source/3_0_release_notes.md')
-rw-r--r--guides/source/3_0_release_notes.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/3_0_release_notes.md b/guides/source/3_0_release_notes.md
index 8122d6c235..46be2613ab 100644
--- a/guides/source/3_0_release_notes.md
+++ b/guides/source/3_0_release_notes.md
@@ -545,7 +545,7 @@ These are the main changes in Active Support:
* `String#to_time` and `String#to_datetime` handle fractional seconds.
* Added support to new callbacks for around filter object that respond to `:before` and `:after` used in before and after callbacks.
* The `ActiveSupport::OrderedHash#to_a` method returns an ordered set of arrays. Matches Ruby 1.9's `Hash#to_a`.
-* `MissingSourceFile` exists as a constant but it is now just equals to `LoadError`.
+* `MissingSourceFile` exists as a constant but it is now just equal to `LoadError`.
* Added `Class#class_attribute`, to be able to declare a class-level attribute whose value is inheritable and overwritable by subclasses.
* Finally removed `DeprecatedCallbacks` in `ActiveRecord::Associations`.
* `Object#metaclass` is now `Kernel#singleton_class` to match Ruby.