From 14ffe24e7a48c82fd04c3e378c21640b603760c2 Mon Sep 17 00:00:00 2001 From: James Lu Date: Wed, 3 May 2023 22:26:27 -0700 Subject: [PATCH] plugin_tutorial: link directly to supybot.ircmsgs.IrcMsg Co-authored-by: Val Lorentz --- develop/plugin_tutorial.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/develop/plugin_tutorial.rst b/develop/plugin_tutorial.rst index 58c4561..54f8917 100644 --- a/develop/plugin_tutorial.rst +++ b/develop/plugin_tutorial.rst @@ -194,7 +194,7 @@ arguments; they are as follows: - ``self``: refers to the class instance. It is common to keep local state for the plugin as instance variables within the plugin class. - ``irc``: refers to the IRC network instance the command was called on -- ``msg``: a :ref:`supybot.ircmsgs ` instance; refers to the +- ``msg``: a :class:`supybot.ircmsgs.IrcMsg` instance; refers to the IRC message that triggered this command. - ``args``: a raw list of remaining unconverted arguments; new plugins that use :ref:`@wrap ` for automatic argument type conversion should