Fix typo
authorTim Düsterhus <duesterhus@woltlab.com>
Tue, 25 Aug 2020 13:24:38 +0000 (15:24 +0200)
committerGitHub <noreply@github.com>
Tue, 25 Aug 2020 13:24:38 +0000 (15:24 +0200)
pages/tutorial/tutorial-series/tutorial_tutorial-series_part-2-event-listeners-and-template-listeners.md

index 6e5ed1d702de2d63a860ad0bacfe759df55c21c2..77c7157c0fa66b02c80b93f376d6548a1ef4afcf 100644 (file)
@@ -122,7 +122,7 @@ The following event listeners achieves these requirements:
 Some notes on the code:
 
 - We are inheriting from `AbstractEventListener`, instead of just implementing the `IParameterizedEventListener` interface.
-  The `execute()` method of `AbstractEventListener` contains a dispatcher that automatically calsl methods called `on` followed by the event name with the first character uppercased, passing the event object and the `$parameters` array.
+  The `execute()` method of `AbstractEventListener` contains a dispatcher that automatically calls methods called `on` followed by the event name with the first character uppercased, passing the event object and the `$parameters` array.
 - The `birthday` column has a default value of `0000-00-00`, which we interpret as “birthday not set”.
   To show an empty input field in this case, we empty the `birthday` property after reading such a value in `readData()`.
 - The validation of the date is, as mentioned before, very basic and just checks the form of the string and uses PHP’s [checkdate](https://secure.php.net/manual/en/function.checkdate.php) function to validate the components.