From e264e6776446ec490c537b0067a3bb73e0a18906 Mon Sep 17 00:00:00 2001 From: Kishin Kato Date: Tue, 6 Jul 2021 18:35:54 +0900 Subject: [PATCH] Fixed typo in comment Caught a typo, fixed it. --- tor/onionaddr.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tor/onionaddr.go b/tor/onionaddr.go index ccc905d7..7570aebc 100644 --- a/tor/onionaddr.go +++ b/tor/onionaddr.go @@ -27,7 +27,7 @@ const ( // V3DecodedLen is the length of a decoded v3 onion service. V3DecodedLen = 35 - // V3Len is the length of a v2 onion service including the ".onion" + // V3Len is the length of a v3 onion service including the ".onion" // suffix. V3Len = 62 )