summaryrefslogtreecommitdiff
path: root/docs/dev/design_documents/event_handler_recipe_dsl.md
diff options
context:
space:
mode:
Diffstat (limited to 'docs/dev/design_documents/event_handler_recipe_dsl.md')
-rw-r--r--docs/dev/design_documents/event_handler_recipe_dsl.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/dev/design_documents/event_handler_recipe_dsl.md b/docs/dev/design_documents/event_handler_recipe_dsl.md
index ec6adbc165..da9d2b09d6 100644
--- a/docs/dev/design_documents/event_handler_recipe_dsl.md
+++ b/docs/dev/design_documents/event_handler_recipe_dsl.md
@@ -4,7 +4,7 @@ Allow cookbook authors to easily add custom logic on Chef events.
## Motivation
-Chef has an extensive [event dispatch mechanism](https://github.com/chef/chef/blob/master/lib/chef/event_dispatch/base.rb).
+Chef has an extensive [event dispatch mechanism](https://github.com/chef/chef/blob/main/lib/chef/event_dispatch/base.rb).
But incorporating some custom logic against any of the events is an onerous process, which involves
subclassing the based event handler and adding it via the config. This RFC
proposes a recipe DSL method to ease this. For new Chef users, this will reduce