From d45285d2f1025899dcd65e259624ee73771f94bb Mon Sep 17 00:00:00 2001 From: orende Date: Sat, 17 Oct 2015 15:05:13 +0200 Subject: [PATCH] Corrected incorrect code example in readme Replaced "channnels" with "channels". This is admittedly a low hanging fruit, but could possibly foil someone at the eleventh hour of a hackathon. --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index b7ad2b940..9986cc209 100644 --- a/README.md +++ b/README.md @@ -86,8 +86,8 @@ Send a JSON message directly to the websocket. See RTM documentation for allowed SlackClient.server.**channels.find([identifier])** The identifier can be either name or Slack channel ID. See above for examples. -SlackClient.server.**channnels[int].send_message([text])** +SlackClient.server.**channels[int].send_message([text])** Send message [text] to [int] channel in the channels list. -SlackClient.server.**channnels.find([identifier]).send_message([text])** +SlackClient.server.**channels.find([identifier]).send_message([text])** Send message [text] to channel [identifier], which can be either channel name or ID. Ex "#general" or "C182391"