Skip to content
This repository was archived by the owner on Aug 15, 2022. It is now read-only.

Commit 0933c1f

Browse files
committed
Correct grammar errors.
1 parent f9f2fd5 commit 0933c1f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ A Slack bot written in Python that connects via the RTM API.
88

99
Python-rtmbot is a bot engine. The plugins architecture should be familiar to anyone with knowledge of the [Slack API](https://api.slack.com) and Python. The configuration file format is YAML.
1010

11-
This project is currently pre-1.0. As such, you should plan for it to have breaking changes from time to time. For any breaking changes, we will bump the minor version while we are pre-1.0. (e.g. 0.2.4 -> 0.3.0 implies breaking changes). If stabiilty is important, you'll likely want to lock in a specific minor version)
11+
This project is currently pre-1.0. As such, you should plan for it to have breaking changes from time to time. For any breaking changes, we will bump the minor version while we are pre-1.0. (e.g. 0.2.4 -> 0.3.0 implies breaking changes). If stability is important, you'll likely want to lock in a specific minor version)
1212

1313
Some differences to webhooks:
1414

@@ -84,7 +84,7 @@ Add your plugin content into this file. Here's an example that will just print a
8484
def catch_all(self, data):
8585
print(data)
8686

87-
You can install as many plugins as you like, and each will handle every event received by the bot indepentently.
87+
You can install as many plugins as you like, and each will handle every event received by the bot independently.
8888

8989
To create an example 'repeat' plugin:
9090

@@ -151,7 +151,7 @@ Plugins also have access to the connected SlackClient instance for more complex
151151
#### Timed jobs
152152
Plugins can also run methods on a schedule. This allows a plugin to poll for updates or perform housekeeping during its lifetime. Jobs define a run() method and return any outputs to be sent to channels. They also have access to a SlackClient instance that allows them to make calls to the Slack Web API.
153153

154-
For example, this will print "hello world" every 10 seconds. You can output multiple messages two the same or different channels by passing multiple pairs of [Channel, Message] combos.
154+
For example, this will print "hello world" every 10 seconds. You can output multiple messages to the same or different channels by passing multiple pairs of [Channel, Message] combos.
155155

156156
from core import Plugin, Job
157157

0 commit comments

Comments
 (0)