From 69a20f303f00f127ff7144fed57764b29330382d Mon Sep 17 00:00:00 2001 From: "Jari (LotU)" Date: Sun, 17 Sep 2017 17:05:34 +0200 Subject: [PATCH] Update building_block_commands.md --- docs/bot_tutorial/building_block_commands.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/bot_tutorial/building_block_commands.md b/docs/bot_tutorial/building_block_commands.md index 2e327b7..3da6118 100644 --- a/docs/bot_tutorial/building_block_commands.md +++ b/docs/bot_tutorial/building_block_commands.md @@ -67,7 +67,7 @@ def on_add_command(self, event, args): event.msg.reply('{}'.format(args.a + args.b) ``` -All combined commands in 1 large codeblock: +These are all the commands we created in this tutorial: ```py class myPlugin(Plugin): @Plugin.command('ping')