aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord/lib/active_record
diff options
context:
space:
mode:
authorVijay Dev <vijaydev.cse@gmail.com>2012-05-12 06:46:14 -0700
committerVijay Dev <vijaydev.cse@gmail.com>2012-05-12 06:46:14 -0700
commit2c8b4a514c515be2679923935a449c6f001b55a1 (patch)
treec8d2b194ecc499d3f4fbf4d0b35d3d49a1eddcbe /activerecord/lib/active_record
parent70237e7dd3dde34dd4b7849619457bcb214ff674 (diff)
parent984bc75fe6ffbfb4b2b66e12782d16e7ab8c23bf (diff)
downloadrails-2c8b4a514c515be2679923935a449c6f001b55a1.tar.gz
rails-2c8b4a514c515be2679923935a449c6f001b55a1.tar.bz2
rails-2c8b4a514c515be2679923935a449c6f001b55a1.zip
Merge pull request #6285 from acapilleri/missplelling_error_in_abstract_mysql_adapter
missplelling error in abstract_mysql_adapter
Diffstat (limited to 'activerecord/lib/active_record')
-rw-r--r--activerecord/lib/active_record/connection_adapters/abstract_mysql_adapter.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/activerecord/lib/active_record/connection_adapters/abstract_mysql_adapter.rb b/activerecord/lib/active_record/connection_adapters/abstract_mysql_adapter.rb
index a848838a4e..9794c5663e 100644
--- a/activerecord/lib/active_record/connection_adapters/abstract_mysql_adapter.rb
+++ b/activerecord/lib/active_record/connection_adapters/abstract_mysql_adapter.rb
@@ -251,7 +251,7 @@ module ActiveRecord
end
# MysqlAdapter has to free a result after using it, so we use this method to write
- # stuff in a abstract way without concerning ourselves about whether it needs to be
+ # stuff in an abstract way without concerning ourselves about whether it needs to be
# explicitly freed or not.
def execute_and_free(sql, name = nil) #:nodoc:
yield execute(sql, name)