From d113b2b5ec28eaf356b7e6567656031f6b9da209 Mon Sep 17 00:00:00 2001 From: Niels Nijens Date: Tue, 10 May 2016 14:27:20 +0200 Subject: [PATCH] Fix typos in the word priority --- doc/articles/plugins.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/articles/plugins.md b/doc/articles/plugins.md index bf72aa235..23b3a8f8a 100644 --- a/doc/articles/plugins.md +++ b/doc/articles/plugins.md @@ -104,10 +104,10 @@ public static function getSubscribedEvents() } ``` -By default, the priority of an event handler is set to 0. The priorty can be +By default, the priority of an event handler is set to 0. The priority can be changed by attaching a tuple where the first value is the method name, as before, and the second value is an integer representing the priority. -Higher integers represent higher priorities. Priortity 2 is called before +Higher integers represent higher priorities. Priority 2 is called before priority 1, etc. ```php