From c34afad4affb14750ed01abaa9fad7c491ef52f2 Mon Sep 17 00:00:00 2001 From: Daniel Rudolf Date: Sun, 22 Nov 2015 14:08:35 +0100 Subject: [PATCH] Fix typo --- lib/Pico.php | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/lib/Pico.php b/lib/Pico.php index 3089290..2a2a383 100644 --- a/lib/Pico.php +++ b/lib/Pico.php @@ -1339,8 +1339,7 @@ class Pico if (!empty($this->plugins)) { foreach ($this->plugins as $plugin) { // only trigger events for plugins that implement PicoPluginInterface - // deprecated events (plugins for Pico 0.9 and older) will be - // triggered by the `PicoPluginDeprecated` plugin + // deprecated events (plugins for Pico 0.9 and older) will be triggered by `PicoDeprecated` if (is_a($plugin, 'PicoPluginInterface')) { $plugin->handleEvent($eventName, $params); }