From bc41113fc9c6e3372955adbf68280eb38c169f91 Mon Sep 17 00:00:00 2001 From: John Bampton Date: Wed, 11 Oct 2023 07:04:34 +1000 Subject: [PATCH] guides/source/configuring.md: fix grammar and spelling --- guides/source/configuring.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/guides/source/configuring.md b/guides/source/configuring.md index aacef632f0..e1610f29ba 100644 --- a/guides/source/configuring.md +++ b/guides/source/configuring.md @@ -1049,13 +1049,13 @@ Controls whether migrations are numbered with serial integers or with timestamps Controls the action to be taken when a SQL query produces a warning. The following options are available: - * `:ignore` - Database warnings wil be ignored. This is the default. + * `:ignore` - Database warnings will be ignored. This is the default. * `:log` - Database warnings will be logged via `ActiveRecord.logger` at the `:warn` level. * `:raise` - Database warnings will be raised as `ActiveRecord::SQLWarning`. - * `:report` - Database warnings be will reported to subscribers of Rails' error reporter. + * `:report` - Database warnings will be reported to subscribers of Rails' error reporter. * Custom proc - A custom proc can be provided. It should accept a `SQLWarning` error object.