Skip to content

Commit 39a6148

Browse files
committed
Fix the /remind help
1 parent b37b7ec commit 39a6148

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

plugins/reminder.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
class Plugin(BasePlugin):
77

88
def init(self):
9-
self.add_command('remind', self.command_remind, "Usage: /reminder <time in seconds> <todo>\nReminder: remind you of <todo> every <time> seconds..", self.completion_remind)
9+
self.add_command('remind', self.command_remind, "Usage: /remind <time in seconds> <todo>\nReminder: remind you of <todo> every <time> seconds..", self.completion_remind)
1010
self.add_command('done', self.command_done, "Usage: /done <id>\nDone: Stop reminding you do the task identified by <id>", self.completion_done)
1111
self.add_command('tasks', self.command_tasks, "Usage: /tasks\nTasks: List all the current tasks and their ids.", None)
1212
self.tasks = {}

0 commit comments

Comments
 (0)