aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord
diff options
context:
space:
mode:
authorAnuj Dutta <anuj@andhapp.com>2012-09-03 14:44:14 +0100
committerAnuj Dutta <anuj@andhapp.com>2012-09-03 14:44:14 +0100
commit198d63f984199bcf5a232eb6482b50fc58d3b4f5 (patch)
tree73fb477907c448b9479931ad55914cec961acdc1 /activerecord
parent10520675d2af862ee9881ea4a20efe081228a3dc (diff)
downloadrails-198d63f984199bcf5a232eb6482b50fc58d3b4f5.tar.gz
rails-198d63f984199bcf5a232eb6482b50fc58d3b4f5.tar.bz2
rails-198d63f984199bcf5a232eb6482b50fc58d3b4f5.zip
Fix indenentation in comment to stop the end of comment from appearing in a <pre> block.
Diffstat (limited to 'activerecord')
-rw-r--r--activerecord/lib/active_record/connection_adapters/postgresql_adapter.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/activerecord/lib/active_record/connection_adapters/postgresql_adapter.rb b/activerecord/lib/active_record/connection_adapters/postgresql_adapter.rb
index 40cd65cce9..e1eabcde6b 100644
--- a/activerecord/lib/active_record/connection_adapters/postgresql_adapter.rb
+++ b/activerecord/lib/active_record/connection_adapters/postgresql_adapter.rb
@@ -543,7 +543,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