Skip to content

Commit 80cae34

Browse files
committed
fix callouts oops
1 parent 2a66877 commit 80cae34

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

docs/webgroup/blockbot.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ All bot files are under `src/`.
3030
## Installation
3131

3232
> [!TIP]
33-
> Docker Compose for local development is highly reccommended. This is similar to how it is deployed on Redbrick.
33+
> Docker Compose for local development is highly recommended. This is similar to how it is deployed on Redbrick.
3434
3535
### Discord Developer Portal
3636

@@ -51,16 +51,16 @@ As a prerequisite, you need to have an application registered on the Discord dev
5151
1. `git clone` and `cd` into the [blockbot repository](https://github.com/redbrick/blockbot).
5252
2. It is generally advised to work in a Python [virtual environment](https://docs.python.org/3/library/venv.html):
5353

54-
```sh
54+
```sh
5555
python3 -m venv .venv
5656
source .venv/bin/activate
57-
```
57+
```
5858

5959
3. Rename `.env.sample` to `.env` inside the repo folder and fill in the environment variables with your secrets. e.g.:
6060

61-
```
62-
TOKEN=<Discord bot token here>
63-
```
61+
```
62+
TOKEN=<Discord bot token here>
63+
```
6464

6565
4. Run `pip install -r requirements.txt` to install the required packages.
6666
5. Start the bot by running `python3 -m src`.

docs/webgroup/contributing.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ git add <files you changed>
3737
git commit -m "<commit message>"
3838
```
3939

40-
> [!NOTE] Tip
40+
> [!TIP]
4141
> See [Writing Meaningful Commit Messages](https://reflectoring.io/meaningful-commit-messages/)
4242

4343
- On GitHub, navigate to your fork repository and switch to the branch you created.
@@ -53,5 +53,5 @@ git commit -m "<commit message>"
5353
![Pull Request page on GitHub](../res/pull-request.png)
5454

5555

56-
> [!NOTE] Tip
56+
> [!TIP]
5757
> For bigger contributions, it's advisable to open a draft pull request when you begin development so other maintainers (e.g. other members of webgroup) can review your changes and provide feedback as you work.

0 commit comments

Comments
 (0)