Skip to content

Commit

Permalink
tell: add missing examples
Browse files Browse the repository at this point in the history
Co-authored-by: Florian Strzelecki <[email protected]>
  • Loading branch information
SnoopJ and Exirel committed Dec 13, 2023
1 parent 2a0eb9e commit 7f586c2
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions sopel/builtins/tell.py
Original file line number Diff line number Diff line change
Expand Up @@ -170,8 +170,14 @@ def _format_safe_lstrip(text):
@plugin.command('tell', 'ask')
@plugin.nickname_command('tell', 'ask')
@plugin.example('$nickname, tell dgw he broke it again.', user_help=True)
@plugin.example('.ask ', 'ask whom?')
@plugin.example('.tell ', 'tell whom?')
@plugin.example('.ask @', 'ask whom?')
@plugin.example('.tell @', 'tell whom?')
@plugin.example('.ask Exirel ', 'ask Exirel what?')
@plugin.example('.tell Exirel ', 'ask Exirel what?')
@plugin.example('.ask @Exirel ', 'ask Exirel what?')
@plugin.example('.tell @Exirel ', 'tell Exirel what?')
def f_remind(bot, trigger):
"""Give someone a message the next time they're seen"""
teller = trigger.nick
Expand Down

0 comments on commit 7f586c2

Please sign in to comment.