From 091d35ff0f591024fe0c9ca1a9c44e0c78ba04bd Mon Sep 17 00:00:00 2001 From: Kyso Date: Sun, 20 May 2012 17:20:18 -0500 Subject: [PATCH] Just fixed some README grammar issues I saw, nothing much besides that. --- readme.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/readme.md b/readme.md index 270d814..d88eb64 100644 --- a/readme.md +++ b/readme.md @@ -33,7 +33,7 @@ Using plugins 1. Stick the plugin.pyp in your bukkit/plugins/ dir 2. [Re-]Start bukkit -writing plugins +Writing plugins =============== Writing plugins with PythonLoader is fairly easy. There are two apis, both @@ -101,9 +101,9 @@ your main.py: @hook.command def example(sender, command, label, args): - sender.sendMessage("you just used comand /example!") + sender.sendMessage("you just used command /example!") -See the "Sample plugin using decorator api" section for a more detailed example +See the "Sample plugin using decorator api" section for a more detailed example. API Details