Skip to content

Commit

Permalink
addressing @shanedewael's comments
Browse files Browse the repository at this point in the history
  • Loading branch information
aoberoi committed Feb 15, 2019
1 parent e567ff9 commit 2f576da
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion docs/_pages/getting_started.md
Expand Up @@ -30,7 +30,7 @@ Let's configure our new app with proper permissions.
### Getting a token to use the Web API

Navigate to "OAuth & Permissions" and scroll down to the section for scopes. Slack describes the various permissions
your app could obtain from a user as **scopes**. There are a [ton of scopes](https://api.slack.com/scopes)! Some are
your app could obtain from a user as **scopes**. There are [over 60 scopes](https://api.slack.com/scopes)! Some are
broad and authorize your app to access lots of data, while others are very specific and let your app touch just a tiny
sliver. Your users (and their IT admins) will have opinions about which data your app should access, so we recommend
finding the scope(s) with the least amount of privilege for your app's needs. In this guide we will use the Web API to
Expand Down
2 changes: 1 addition & 1 deletion docs/_pages/rtm_client.md
Expand Up @@ -184,7 +184,7 @@ rtm.on(`message::channel_name`, (event) => {
});
```

With this program running, when you rename a channel in which the bot is a member, you should see the log message.
When the program is running and you rename a channel your bot is a member of, you should see the logged message.

---

Expand Down
2 changes: 1 addition & 1 deletion examples/README.md
@@ -1,7 +1,7 @@
## Examples

This directory contains small example programs that you can copy to get started quickly. Try these examples out for
yourself by cloning (or downloading) this repository, running `npm install` in this directory. Then run one of the
yourself by cloning (or downloading) this repository and running `npm install` in this directory. Then run one of the
programs (e.g. `node basic-web-client.js`). We recommend using the latest LTS version node.

* **Basic Web Client** (`basic-web-client.js`) -- Using the Slack Web API
Expand Down

0 comments on commit 2f576da

Please sign in to comment.