aboutsummaryrefslogtreecommitdiffstats
path: root/activerecord
diff options
context:
space:
mode:
authorAvnerCohen <israbirding@gmail.com>2012-10-09 09:46:09 +0200
committerAvnerCohen <israbirding@gmail.com>2012-10-09 09:46:09 +0200
commit28fc89323ce5e5d29fb9254a95cce917a88974c2 (patch)
tree74f276821bb58234eb20cba1e689d25fb7ba458d /activerecord
parent46902908910c041e268429d674bbe084399cc664 (diff)
downloadrails-28fc89323ce5e5d29fb9254a95cce917a88974c2.tar.gz
rails-28fc89323ce5e5d29fb9254a95cce917a88974c2.tar.bz2
rails-28fc89323ce5e5d29fb9254a95cce917a88974c2.zip
Fixed unclosing tag
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 5e35f472c7..bd375ad15a 100644
--- a/activerecord/lib/active_record/connection_adapters/postgresql_adapter.rb
+++ b/activerecord/lib/active_record/connection_adapters/postgresql_adapter.rb
@@ -241,7 +241,7 @@ module ActiveRecord
# <encoding></tt> call on the connection.
# * <tt>:min_messages</tt> - An optional client min messages that is used in a
# <tt>SET client_min_messages TO <min_messages></tt> call on the connection.
- # * <tt>:insert_returning</tt> - An optional boolean to control the use or <tt>RETURNING</tt> for <tt>INSERT<tt> statements
+ # * <tt>:insert_returning</tt> - An optional boolean to control the use or <tt>RETURNING</tt> for <tt>INSERT</tt> statements
# defaults to true.
#
# Any further options are used as connection parameters to libpq. See