From ef14fc4ca4c061a21a48170b520a8d77a8f23282 Mon Sep 17 00:00:00 2001 From: Greg Pluta Date: Thu, 1 Dec 2022 21:42:18 +0100 Subject: [PATCH] Fix "WordPress" spelling typo --- create_framework/event_dispatcher.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/create_framework/event_dispatcher.rst b/create_framework/event_dispatcher.rst index bf872a5bb50..181c75b00d2 100644 --- a/create_framework/event_dispatcher.rst +++ b/create_framework/event_dispatcher.rst @@ -8,7 +8,7 @@ hook into the framework life cycle to modify the way the request is handled. What kind of hooks are we talking about? Authentication or caching for instance. To be flexible, hooks must be plug-and-play; the ones you "register" for an application are different from the next one depending on your specific -needs. Many software have a similar concept like Drupal or Wordpress. In some +needs. Many software have a similar concept like Drupal or WordPress. In some languages, there is even a standard like `WSGI`_ in Python or `Rack`_ in Ruby. As there is no standard for PHP, we are going to use a well-known design