From 50734c20cce843e51c8b021348e3451a8c23dac0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?R=C3=A9gis=20Behmo?= Date: Tue, 31 Jan 2023 15:46:15 +0100 Subject: [PATCH] docs: fix incorrect catalog references --- tutor/hooks/catalog.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tutor/hooks/catalog.py b/tutor/hooks/catalog.py index 39ef13d..cb45f1f 100644 --- a/tutor/hooks/catalog.py +++ b/tutor/hooks/catalog.py @@ -95,7 +95,7 @@ class Actions: #: #: Plugins are typically loaded because they were enabled by the user; the list of #: plugins to enable is found in the project root (see - #: :py:data:``PROJECT_ROOT_READY``). + #: :py:data:`PROJECT_ROOT_READY`). #: #: Most plugin developers will not have to implement this action themselves, unless #: they want to perform a specific action at the moment the plugin is enabled. @@ -104,7 +104,7 @@ class Actions: PLUGIN_LOADED: ActionTemplate[[]] = actions.get_template("plugins:loaded:{0}") #: Triggered after all plugins have been loaded. At this point the list of loaded - #: plugins may be obtained from the :py:data:``Filters.PLUGINS_LOADED`` filter. + #: plugins may be obtained from the :py:data:`Filters.PLUGINS_LOADED` filter. #: #: This action does not have any parameter. PLUGINS_LOADED: Action[[]] = actions.get("plugins:loaded")