Skip to content

Commit 76a5b56

Browse files
committed
[#2064] Adding a link from event dispatcher to HttpKernel per @wouterj's suggestion
1 parent e4131cf commit 76a5b56

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

components/event_dispatcher/introduction.rst

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ The Symfony2 Event Dispatcher component implements the `Observer`_ pattern in
2424
a simple and effective way to make all these things possible and to make your
2525
projects truly extensible.
2626

27-
Take a simple example from the `Symfony2 HttpKernel component`_. Once a
27+
Take a simple example from the :doc:`/components/http_kernel/introduction`. Once a
2828
``Response`` object has been created, it may be useful to allow other elements
2929
in the system to modify it (e.g. add some cache headers) before it's actually
3030
used. To make this possible, the Symfony2 kernel throws an event -
@@ -487,7 +487,6 @@ Now, any listeners to ``store.order`` that have not yet been called will *not*
487487
be called.
488488

489489
.. _Observer: http://en.wikipedia.org/wiki/Observer_pattern
490-
.. _`Symfony2 HttpKernel component`: https://github.com/symfony/HttpKernel
491490
.. _Closures: http://php.net/manual/en/functions.anonymous.php
492491
.. _PHP callable: http://www.php.net/manual/en/language.pseudo-types.php#language.types.callback
493492
.. _Packagist: https://packagist.org/packages/symfony/event-dispatcher

0 commit comments

Comments
 (0)