aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord
diff options
context:
space:
mode:
authorVijay Dev <vijaydev.cse@gmail.com>2012-09-09 17:39:37 +0530
committerVijay Dev <vijaydev.cse@gmail.com>2012-09-09 17:39:37 +0530
commitcfbd73c9eaa196a65c90a98a410a18c3c444bc63 (patch)
treefcfe56454cf2f399827c9f6ec962b5747a7694b9 /activerecord
parentcb524dc1d7525a26ecea8cf049757e530f0d4026 (diff)
downloadrails-cfbd73c9eaa196a65c90a98a410a18c3c444bc63.tar.gz
rails-cfbd73c9eaa196a65c90a98a410a18c3c444bc63.tar.bz2
rails-cfbd73c9eaa196a65c90a98a410a18c3c444bc63.zip
indent fix [ci skip]
Diffstat (limited to 'activerecord')
-rw-r--r--activerecord/lib/active_record/connection_adapters/postgresql/quoting.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/activerecord/lib/active_record/connection_adapters/postgresql/quoting.rb b/activerecord/lib/active_record/connection_adapters/postgresql/quoting.rb
index 152258a2f4..85721601a9 100644
--- a/activerecord/lib/active_record/connection_adapters/postgresql/quoting.rb
+++ b/activerecord/lib/active_record/connection_adapters/postgresql/quoting.rb
@@ -9,7 +9,7 @@ module ActiveRecord
# Unescapes bytea output from a database to the binary string it represents.
# NOTE: This is NOT an inverse of escape_bytea! This is only to be used
- # on escaped binary output from database drive.
+ # on escaped binary output from database drive.
def unescape_bytea(value)
PGconn.unescape_bytea(value) if value
end