From b659b71e8e0ce75fe6a5ab9b67118b38c17d6131 Mon Sep 17 00:00:00 2001 From: Jacob Evelyn Date: Fri, 16 Nov 2018 16:16:48 -0500 Subject: Fix typo and clarify documentation This commit fixes a small typo in documentation of the "UNLOGGED" table option for PostgreSQL databases, and clarifies the documentation slightly. --- .../lib/active_record/connection_adapters/postgresql_adapter.rb | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/activerecord/lib/active_record/connection_adapters/postgresql_adapter.rb b/activerecord/lib/active_record/connection_adapters/postgresql_adapter.rb index f701292be3..d2ed699ee2 100644 --- a/activerecord/lib/active_record/connection_adapters/postgresql_adapter.rb +++ b/activerecord/lib/active_record/connection_adapters/postgresql_adapter.rb @@ -89,10 +89,11 @@ module ActiveRecord # :singleton-method: # PostgreSQL allows the creation of "unlogged" tables, which do not record # data in the PostgreSQL Write-Ahead Log. This can make the tables faster, - # bug significantly increases the risk of data loss if the database + # but significantly increases the risk of data loss if the database # crashes. As a result, this should not be used in production - # environments. If you would like all created tables to be unlogged you - # can add the following line to your test.rb file: + # environments. If you would like all created tables to be unlogged in + # the test environment you can add the following line to your test.rb + # file: # # ActiveRecord::ConnectionAdapters::PostgreSQLAdapter.create_unlogged_tables = true class_attribute :create_unlogged_tables, default: false -- cgit v1.2.3