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

Commit 0fe3cb6

Browse files
committed
grammar
1 parent 9f71ca3 commit 0fe3cb6

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
@@ -90,13 +90,13 @@ Plugins can also run methods on a schedule. This allows a plugin to poll for upd
9090
The data within a plugin persists for the life of the rtmbot process. If you need persistent data, you should use something like sqlite or the python pickle libraries.
9191

9292
####Direct API Calls
93-
You can directly call the Slack web API in your plugins by allowing the following import:
93+
You can directly call the Slack web API in your plugins by including the following import:
9494

95-
from client import client
95+
from client import slack_client
9696

9797
You can also rename the client on import so it can be easily referenced like shown below:
9898

99-
from client import client as sc
99+
from client import slack_client as sc
100100

101101
Direct API calls can be called in your plugins in the following form:
102102

0 commit comments

Comments
 (0)