aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZoffix Znet <cpan@zoffix.com>2016-07-26 13:51:39 -0400
committerZoffix Znet <cpan@zoffix.com>2016-07-26 13:51:39 -0400
commitb44c8425ae1d8cde9907723e99960fa4a72be38a (patch)
tree876dd353df73e47d67e05115196c58b68ca6687e
parent7e9ee640382187645115598a4965e319faa05988 (diff)
Grammar and formatting
-rw-r--r--docs/01-basics.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/01-basics.md b/docs/01-basics.md
index 3866bb1..ddc69da 100644
--- a/docs/01-basics.md
+++ b/docs/01-basics.md
@@ -64,13 +64,13 @@ event handlers should be tried.
Here are the things your event handler can return:
-* Value of `$.NEXT`: pass the event to next plugin or event handler than can
+* Value of `$.NEXT`: pass the event to the next plugin or event handler than can
handle it
* `Nil`: do not reply to the message, but do not pass the event to any other
event handler; we handled it
* `Promise`: when the Promise is `.kept`, use its value for the .reply, unless
it's a `Nil`. **Note:** you cannot return `$.NEXT` here.
-* Any other value: mark the event as handled and don't pass it further. The
+* *Any other value*: mark the event as handled and don't pass it further. The
returned value will be given to message object's `.reply` method if
it has one, or ignored if it doesn't. For `irc-to-me` message objects, this
means the value will be sent back to the sender of the original message