Skip to content

Commit 307c5fd

Browse files
author
Rodney Urquhart
committed
A couple of minor text updates
1 parent 5570219 commit 307c5fd

3 files changed

Lines changed: 7 additions & 6 deletions

File tree

tutorial/03-responding-to-slack-events.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Responding to Slack events
2-
The code for this step is also available [here](/tutorial/PythOnBoardingBot).
2+
The code for this step is available [here](/tutorial/PythOnBoardingBot).
33

44
## Install the dependencies
55
> 💡 **[“Requirements files”](https://pip.pypa.io/en/stable/user_guide/#id12)** are files containing a list of items to be installed using pip install. Details on the format of the files are here: [Requirements File Format](https://pip.pypa.io/en/stable/reference/pip_install/#requirements-file-format).

tutorial/04-running-the-app.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,7 @@ $ python3 app.py
1616
-> The Websocket connection has been opened.
1717
```
1818

19-
### Demo time!
20-
🎉 That's it. Congradulations! You've just built a Slack app. 🤖
19+
### 🎉 That's it. Congradulations! You've just built a Slack app. 🤖
2120
![Onboarding](https://user-images.githubusercontent.com/3329665/56870674-ab02b300-69c7-11e9-9101-eb823235f3c2.gif)
2221
---
2322

tutorial/README.md

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,12 +14,14 @@ When a user first joins a team it'll send you a message with the following tasks
1414

1515
As you complete each task you'll see the message update with a green checkmark.
1616

17+
![Onboarding](https://user-images.githubusercontent.com/3329665/56870674-ab02b300-69c7-11e9-9101-eb823235f3c2.gif)
18+
1719
## What you'll need before you get started:
1820

19-
0. A Slack team.
21+
1. A Slack team.
2022
Before anything else you'll need a Slack team. You can [Sign into an existing Slack workspace](https://get.slack.help/hc/en-us/articles/212681477-Sign-in-to-Slack) or you can [create a new Slack workspace](https://get.slack.help/hc/en-us/articles/206845317-Create-a-Slack-workspace) to test your app first.
2123

22-
1. A terminal with Python 3.6+ installed.
24+
2. A terminal with Python 3.6+ installed.
2325
Check your installation by running the following command in your terminal:
2426
```
2527
$ python3 --version
@@ -40,7 +42,7 @@ $ python3 -m venv env/
4042
$ source env/bin/activate
4143
```
4244

43-
2. A text editor of your choice.
45+
3. A text editor of your choice.
4446
Open up your new project folder "PythOnBoardingBot" in your text editor.
4547

4648
## Table of contents

0 commit comments

Comments
 (0)