aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord
diff options
context:
space:
mode:
authorWaseem Ahmad <talk.to.waseem@gmail.com>2012-04-03 05:41:07 +0530
committerWaseem Ahmad <talk.to.waseem@gmail.com>2012-04-03 05:41:07 +0530
commita17874ee568e68acb94fea2e581602823f0c6db3 (patch)
treeb6ba68adc8c61f41c4574b7df5910da5de925e6d /activerecord
parent7b1abe84ae84fc2a4a62cbec486df80000358d3d (diff)
downloadrails-a17874ee568e68acb94fea2e581602823f0c6db3.tar.gz
rails-a17874ee568e68acb94fea2e581602823f0c6db3.tar.bz2
rails-a17874ee568e68acb94fea2e581602823f0c6db3.zip
Remove unnecessary articles.
Diffstat (limited to 'activerecord')
-rw-r--r--activerecord/lib/active_record/connection_adapters/abstract/database_statements.rb6
1 files changed, 3 insertions, 3 deletions
diff --git a/activerecord/lib/active_record/connection_adapters/abstract/database_statements.rb b/activerecord/lib/active_record/connection_adapters/abstract/database_statements.rb
index 174450eb00..e919068909 100644
--- a/activerecord/lib/active_record/connection_adapters/abstract/database_statements.rb
+++ b/activerecord/lib/active_record/connection_adapters/abstract/database_statements.rb
@@ -57,21 +57,21 @@ module ActiveRecord
end
# Executes insert +sql+ statement in the context of this connection using
- # +binds+ as the bind substitutes. +name+ is the logged along with
+ # +binds+ as the bind substitutes. +name+ is logged along with
# the executed +sql+ statement.
def exec_insert(sql, name, binds)
exec_query(sql, name, binds)
end
# Executes delete +sql+ statement in the context of this connection using
- # +binds+ as the bind substitutes. +name+ is the logged along with
+ # +binds+ as the bind substitutes. +name+ is logged along with
# the executed +sql+ statement.
def exec_delete(sql, name, binds)
exec_query(sql, name, binds)
end
# Executes update +sql+ statement in the context of this connection using
- # +binds+ as the bind substitutes. +name+ is the logged along with
+ # +binds+ as the bind substitutes. +name+ is logged along with
# the executed +sql+ statement.
def exec_update(sql, name, binds)
exec_query(sql, name, binds)