aboutsummaryrefslogtreecommitdiffstats
path: root/guides
diff options
context:
space:
mode:
authorSharang Dashputre <sharang.d@gmail.com>2019-02-19 16:41:22 +0530
committerSharang Dashputre <sharang.d@gmail.com>2019-02-19 16:43:56 +0530
commitb0f85c66e5086c3e1b575ac3ea26021bf48dd8a2 (patch)
tree35ee385b0aa050e80c36da16714b0a87dde74832 /guides
parent84bd9adafde36d0192849649b86ffcd4e59e5e11 (diff)
downloadrails-b0f85c66e5086c3e1b575ac3ea26021bf48dd8a2.tar.gz
rails-b0f85c66e5086c3e1b575ac3ea26021bf48dd8a2.tar.bz2
rails-b0f85c66e5086c3e1b575ac3ea26021bf48dd8a2.zip
Update active_record_callbacks.md [ci skip]
Change 'happen' to a more technical term
Diffstat (limited to 'guides')
-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 4568b467ef..bdd74ddcbc 100644
--- a/guides/source/active_record_callbacks.md
+++ b/guides/source/active_record_callbacks.md
@@ -340,7 +340,7 @@ end
### Combining Callback Conditions
-When multiple conditions define whether or not a callback should happen, an `Array` can be used. Moreover, you can apply both `:if` and `:unless` to the same callback.
+When multiple conditions define whether or not a callback should execute, an `Array` can be used. Moreover, you can apply both `:if` and `:unless` to the same callback.
```ruby
class Comment < ApplicationRecord