From 0c79c2d4c8558e3bd6cccb0bc7842456b705bbc8 Mon Sep 17 00:00:00 2001 From: Evgeny Poberezkin Date: Sun, 9 Aug 2026 17:00:57 +0100 Subject: [PATCH] typos --- apps/simplex-directory-service/src/Directory/Service.hs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/simplex-directory-service/src/Directory/Service.hs b/apps/simplex-directory-service/src/Directory/Service.hs index 7e47982661..079adeb730 100644 --- a/apps/simplex-directory-service/src/Directory/Service.hs +++ b/apps/simplex-directory-service/src/Directory/Service.hs @@ -238,7 +238,7 @@ directoryCommands = "Group settings" [ CBCCommand "role" "View new member role" idParam, CBCCommand "filter" "Anti-spam filter" idParam, - CBCCommand "link" "View and upgrade group link" idParam, + CBCCommand "link" "View group link" idParam, CBCCommand "delete" "Remove a group from directory" (Just ":''") ] ] @@ -1120,7 +1120,7 @@ directoryServiceEvent st opts@DirectoryOpts {adminUsers, superUsers, serviceName Just mRole -> do setGroupLinkRole cc g mRole >>= \case Just gLink -> sendReply $ initialRole n mRole <> "\n" <> onlyViaLink gLink - Nothing -> sendReply $ roleError gr n $ "Error: the initial member role for the group " <> n <> " was NOT upgated." + Nothing -> sendReply $ roleError gr n $ "Error: the initial member role for the group " <> n <> " was NOT updated." where initialRole n mRole = "The initial member role for the group " <> n <> " is set to *" <> textEncode mRole <> "*\n" onlyViaLink gLink = "*Please note*: it applies only to members joining via this link: " <> groupLinkText gLink