diff --git a/inc/events.php b/inc/events.php
index af26b08a8a57a9dd3c2d13df977fef19bceb529d..034414f88539571b7a7577198aab318e8c47e8c2 100644
--- a/inc/events.php
+++ b/inc/events.php
@@ -132,7 +132,7 @@ class Doku_Event {
      *
      * @return bool
      */
-    public function mayPropgate() {
+    public function mayPropagate() {
         return $this->_continue;
     }
 
@@ -229,7 +229,7 @@ class Doku_Event_Handler {
                         $obj->$method($event, $param);
                     }
 
-                    if (!$event->mayPropgate()) return;
+                    if (!$event->mayPropagate()) return;
                 }
             }
         }