1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

indent fix [ci skip]

This commit is contained in:
Vijay Dev 2012-09-09 17:39:37 +05:30
parent cb524dc1d7
commit cfbd73c9ea

View file

@ -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