aboutsummaryrefslogtreecommitdiffstats
path: root/guides/source/active_record_callbacks.md
diff options
context:
space:
mode:
authorShodai Suzuki <info@soartec-lab.work>2019-02-19 13:31:25 +0900
committerRyuta Kamizono <kamipo@gmail.com>2019-02-19 13:31:25 +0900
commit02e6abd8fd5ad883fd2f29fd5850e650dd121805 (patch)
tree8b1a4c66ea6f121200148c32c83c38b2d0032db1 /guides/source/active_record_callbacks.md
parentd28548603244347cf97aa7021c54ea1eff75c9c4 (diff)
downloadrails-02e6abd8fd5ad883fd2f29fd5850e650dd121805.tar.gz
rails-02e6abd8fd5ad883fd2f29fd5850e650dd121805.tar.bz2
rails-02e6abd8fd5ad883fd2f29fd5850e650dd121805.zip
Delete documentation inconsistency 'finally' for AR callbacks [ci skip] (#35303)
Diffstat (limited to 'guides/source/active_record_callbacks.md')
-rw-r--r--guides/source/active_record_callbacks.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/active_record_callbacks.md b/guides/source/active_record_callbacks.md
index 4579b748df..4568b467ef 100644
--- a/guides/source/active_record_callbacks.md
+++ b/guides/source/active_record_callbacks.md
@@ -310,7 +310,7 @@ end
### Using `:if` and `:unless` with a `Proc`
-Finally, it is possible to associate `:if` and `:unless` with a `Proc` object. This option is best suited when writing short validation methods, usually one-liners:
+It is possible to associate `:if` and `:unless` with a `Proc` object. This option is best suited when writing short validation methods, usually one-liners:
```ruby
class Order < ApplicationRecord