docs: fix incorrect catalog references

This commit is contained in:
Régis Behmo 2023-01-31 15:46:15 +01:00
parent 6f06182877
commit 50734c20cc
1 changed files with 2 additions and 2 deletions

View File

@ -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")