aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord
diff options
context:
space:
mode:
authorRafael Mendonça França <rafaelmfranca@gmail.com>2013-10-13 16:54:04 -0300
committerRafael Mendonça França <rafaelmfranca@gmail.com>2013-10-13 16:54:04 -0300
commit3a2093984ff49d86db1efeff0c7581e788ecfb9f (patch)
tree4822448c77a9365c0ef004ff6a6e89c372b311df /activerecord
parent95cb54a29ee014253665abc4e9068fffc578128d (diff)
downloadrails-3a2093984ff49d86db1efeff0c7581e788ecfb9f.tar.gz
rails-3a2093984ff49d86db1efeff0c7581e788ecfb9f.tar.bz2
rails-3a2093984ff49d86db1efeff0c7581e788ecfb9f.zip
Add nodoc to method
Diffstat (limited to 'activerecord')
-rw-r--r--activerecord/lib/active_record/sanitization.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/activerecord/lib/active_record/sanitization.rb b/activerecord/lib/active_record/sanitization.rb
index af4ea0efec..cab8fd745a 100644
--- a/activerecord/lib/active_record/sanitization.rb
+++ b/activerecord/lib/active_record/sanitization.rb
@@ -132,7 +132,7 @@ module ActiveRecord
end
end
- def replace_bind_variable(value, c = connection)
+ def replace_bind_variable(value, c = connection) #:nodoc:
if ActiveRecord::Relation === value
value.to_sql
else