diff --git a/plugins/admin.py b/plugins/admin.py index 7394c01..892d4f3 100644 --- a/plugins/admin.py +++ b/plugins/admin.py @@ -49,7 +49,7 @@ def spawnclient(irc, source, args): def quit(irc, source, args): """ [] - Admin-only. Quits the PyLink client , if it exists.""" + Admin-only. Quits the PyLink client with nick , if one exists.""" checkauthenticated(irc, source) try: nick = args[0] @@ -66,7 +66,7 @@ def quit(irc, source, args): def joinclient(irc, source, args): """ ,[], etc. - Admin-only. Joins , a PyLink client, to a comma-separated list of channels.""" + Admin-only. Joins , the nick of a PyLink client, to a comma-separated list of channels.""" checkauthenticated(irc, source) try: nick = args[0] @@ -108,7 +108,7 @@ def nick(irc, source, args): def part(irc, source, args): """ ,[],... [] - Admin-only. Parts , a PyLink client, from a comma-separated list of channels.""" + Admin-only. Parts , the nick of a PyLink client, from a comma-separated list of channels.""" checkauthenticated(irc, source) try: nick = args[0] @@ -128,7 +128,7 @@ def part(irc, source, args): def kick(irc, source, args): """ [] - Admin-only. Kicks from via , where is a PyLink client.""" + Admin-only. Kicks from via , where is the nick of a PyLink client.""" checkauthenticated(irc, source) try: nick = args[0] @@ -186,7 +186,7 @@ def showchan(irc, source, args): def mode(irc, source, args): """ - Admin-only. Sets modes on .""" + Admin-only. Sets modes on from , where is the nick of a PyLink client.""" checkauthenticated(irc, source) try: modesource, target, modes = args[0], args[1], args[2:]