Reference modern-irc spec when relevant

This commit is contained in:
2022-03-17 21:31:55 +01:00
parent 9b696f1ad3
commit b4b52e2c7c
2 changed files with 4 additions and 3 deletions

View File

@ -38,7 +38,8 @@ message, all ``do437`` methods are called, etc.
Those command take two commands: an :ref:`Irc object <supybot-irclib-irc>` Those command take two commands: an :ref:`Irc object <supybot-irclib-irc>`
and a :ref:`IrcMsg object <supybot-ircmsgs>`. and a :ref:`IrcMsg object <supybot-ircmsgs>`.
To get a list of all possible messages, check IRC RFCs. To get a list of all possible messages, check `IRC specifications
<https://modern.ircdocs.horse/>`__.
Filters Filters
======= =======

View File

@ -45,8 +45,8 @@ What is a hostmask?
=================== ===================
Each user on IRC is uniquely identified by a string which we call a Each user on IRC is uniquely identified by a string which we call a
`hostmask`. The IRC RFC refers to it as a prefix. Either way, it ``hostmask``. The IRC specifications refers to it as a "prefix" or "source".
consists of a nick, a user, and a host, in the form Either way, it consists of a nick, a user, and a host, in the form
``nick!user@host``. If your Supybot complains that something you've ``nick!user@host``. If your Supybot complains that something you've
given to it isn't a hostmask, make sure that you have those three given to it isn't a hostmask, make sure that you have those three
components and that they're joined in the appropriate manner. components and that they're joined in the appropriate manner.