diff --git a/docs/customization/plugin-authors-guide.md b/docs/customization/plugin-authors-guide.md index ebefbe48..615d8acd 100644 --- a/docs/customization/plugin-authors-guide.md +++ b/docs/customization/plugin-authors-guide.md @@ -45,7 +45,7 @@ To make our plugin do anything useful, we need to add [[event-handler-hooks]] to ```c++ class MyPlugin : public Plugin { public: - EventHanderResult onKeyEvent(KeyEvent &event); + EventHandlerResult onKeyEvent(KeyEvent &event); }; ```