From 60474375cae2554565bdf833a38150a8c9eae478 Mon Sep 17 00:00:00 2001 From: Jesse Parsons <59420931+leetie@users.noreply.github.com> Date: Mon, 18 May 2020 14:32:56 -0400 Subject: [PATCH] Update active_record_callbacks.md Co-authored-by: Jonathan Hefner --- guides/source/active_record_callbacks.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guides/source/active_record_callbacks.md b/guides/source/active_record_callbacks.md index e9df505f21..f2595c7d4e 100644 --- a/guides/source/active_record_callbacks.md +++ b/guides/source/active_record_callbacks.md @@ -431,7 +431,7 @@ end NOTE: The `:on` option specifies when a callback will be fired. If you don't supply the `:on` option the callback will fire for every action. -Since using `after_commit` callback only on create, update, or delete is +Since using the `after_commit` callback only on create, update, or delete is common, there are aliases for those operations: * `after_create_commit` -- GitLab