From 82ed8f4991c4a54933e451f0d130d415dae119f8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Maxime=20=E2=80=9Cpep=E2=80=9D=20Buquet?= Date: Sat, 17 Dec 2022 12:09:00 +0100 Subject: [PATCH] parsers/muc: Rephrase comment, s/he or she/they/ MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Maxime “pep” Buquet --- parsers/src/muc/user.rs | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/parsers/src/muc/user.rs b/parsers/src/muc/user.rs index 2585913a..2f3660f3 100644 --- a/parsers/src/muc/user.rs +++ b/parsers/src/muc/user.rs @@ -52,29 +52,29 @@ Status, "status", MUC_USER, "code", { /// 210: Inform user that service has assigned or modified occupant's roomnick AssignedNick => 210, - /// 301: Inform user that he or she has been banned from the room + /// 301: Inform user that they have been banned from the room Banned => 301, /// 303: Inform all occupants of new room nickname NewNick => 303, - /// 307: Inform user that he or she has been kicked from the room + /// 307: Inform user that they have been kicked from the room Kicked => 307, - /// 321: Inform user that he or she is being removed from the room + /// 321: Inform user that they are being removed from the room /// because of an affiliation change RemovalFromRoom => 321, - /// 322: Inform user that he or she is being removed from the room + /// 322: Inform user that they are being removed from the room /// because the room has been changed to members-only and the /// user is not a member ConfigMembersOnly => 322, - /// 332: Inform user that he or she is being removed from the room + /// 332: Inform user that they are being removed from the room /// because the MUC service is being shut down ServiceShutdown => 332, - /// 333: Inform a user that they are being removed from the room for technical reasons + /// 333: Inform user that they are being removed from the room for technical reasons ServiceErrorKick => 333, });