From 40e594abf8c403d8b33da0b1d2696e459a126980 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tam=C3=A1s=20Solymos?= <15968382+slymas@users.noreply.github.com> Date: Mon, 27 Nov 2023 11:34:37 +0000 Subject: [PATCH] Fix NewNick's comment It wasn't updated after fixing https://github.com/fluffle/goirc/issues/108. --- client/connection.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/client/connection.go b/client/connection.go index 534ea2a..8087a38 100644 --- a/client/connection.go +++ b/client/connection.go @@ -108,7 +108,8 @@ type Config struct { Sasl sasl.Client // Replaceable function to customise the 433 handler's new nick. - // By default an underscore "_" is appended to the current nick. + // By default the current nick's last character is "incremented". + // See DefaultNewNick implementation below for details. NewNick func(string) string // Client->server ping frequency, in seconds. Defaults to 3m.