diff --git a/core/core.api.php b/core/core.api.php
index 68f4636..d86edcf 100644
--- a/core/core.api.php
+++ b/core/core.api.php
@@ -2518,14 +2518,15 @@ function hook_validation_constraint_alter(array &$definitions) {
  * Overview of event dispatch and subscribing
  *
  * @section sec_intro Introduction and terminology
- * Events are part of the Symfony framework: they allow for different components
- * of the system to interact and communicate with each other. Each event has a
- * unique string name. One system component dispatches the event at an
- * appropriate time; many events are dispatched by Drupal core and the Symfony
- * framework in every request. Other system components can register as event
- * subscribers; when an event is dispatched, a method is called on each
- * registered subscriber, allowing each one to react. For more on the general
- * concept of events, see
+ * Events are part of the Symfony EventDispatcher component: they allow for
+ * different components of the system to interact and communicate with each
+ * other by dispatching events and listening to them. Each event has a unique
+ * string name. One system component dispatches the event at an appropriate
+ * time; many events are dispatched by Drupal core and the Symfony framework in
+ * every request. Other system components can register as event subscribers;
+ * when an event is dispatched, a method is called on each registered
+ * subscriber, allowing each one to react. For more on the general concept of
+ * events, see
  * http://symfony.com/doc/current/components/event_dispatcher/introduction.html
  *
  * @section sec_dispatch Dispatching events
