From b4b52e2c7c2e068eb2ea1226edc78f5d1f3de3eb Mon Sep 17 00:00:00 2001 From: Valentin Lorentz Date: Thu, 17 Mar 2022 21:31:55 +0100 Subject: [PATCH] Reference modern-irc spec when relevant --- develop/events.rst | 3 ++- use/faq.rst | 4 ++-- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/develop/events.rst b/develop/events.rst index a86c0a4..8caa458 100644 --- a/develop/events.rst +++ b/develop/events.rst @@ -38,7 +38,8 @@ message, all ``do437`` methods are called, etc. Those command take two commands: an :ref:`Irc object ` and a :ref:`IrcMsg object `. -To get a list of all possible messages, check IRC RFCs. +To get a list of all possible messages, check `IRC specifications +`__. Filters ======= diff --git a/use/faq.rst b/use/faq.rst index b1d0dcf..fae2d82 100644 --- a/use/faq.rst +++ b/use/faq.rst @@ -45,8 +45,8 @@ What is a hostmask? =================== 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 - consists of a nick, a user, and a host, in the form + ``hostmask``. The IRC specifications refers to it as a "prefix" or "source". + 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 given to it isn't a hostmask, make sure that you have those three components and that they're joined in the appropriate manner.