Skip to content

Commit 02bdabe

Browse files
authored
Merge pull request #135 from codigoencasa/master
fix: stuff
2 parents e99cf33 + 1744dfd commit 02bdabe

File tree

3 files changed

+13
-4
lines changed

3 files changed

+13
-4
lines changed

src/pages/en/contribute/index.mdx

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,14 @@ The content of the documentation is located in the [BuilderBot repository](https
3838

3939
---
4040

41+
## For Developers
42+
43+
If you're a developer and want to contribute to the project, we've prepared a video guide to help you get started:
44+
45+
<Video yt="1fgdHS4FnNE" />
46+
47+
---
48+
4149
## GitHub Workflow
4250

4351
If you're new to GitHub, we recommend you read the GitHub Open Source Guide to learn how to fork a repository, create a branch, and send a pull request.

src/pages/en/plugins/telegram.mdx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@ export const description = 'Telegram is a user-friendly provider, in this articl
77
# Telegram
88

99
<Note>
10-
Create your first Telegram bot if you don't have one yet [create your firts Telegram bot](https://core.telegram.org/bots/tutorial "Create your firts Telegra bot")
10+
Create your first Telegram bot if you don't have one yet [create your first Telegram bot](https://core.telegram.org/bots/tutorial "Create your first Telegram bot")
1111
</Note>
1212

13-
Implementing a new communication channel such as telegram without affecting the logic of your project is very simple. Below you can find the starting point to implement the new telegram provider.
13+
Implementing a new communication channel such as Telegram without affecting the logic of your project is very simple. Below you can find the starting point to implement the new telegram provider.
1414

1515
## Install
1616
<CodeGroup>
@@ -63,4 +63,4 @@ In this way we have already implemented a new provider for Telegram keeping the
6363

6464
<Resources />
6565

66-
<Contributors users={['Elimeleth']} />
66+
<Contributors users={['Elimeleth']} />

src/pages/en/showcases/modularize.mdx

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ As our projects grow we will need to implement a better way to maintain the proj
1919
In the following example we will show how we have migrated the modules to a directory, as well as the provider and the database.
2020

2121
<CodeGroup>
22-
```ts {{ title: 'app.ts' }}
22+
```ts {{ title: 'app.ts' }}+
2323
import { createBot } from '@builderbot/bot';
2424
import { flow } from "./flow";
2525
import { database } from "./database";
@@ -47,6 +47,7 @@ main()
4747
export const provider = createProvider(BaileysProvider)
4848
```
4949
```ts {{ title: 'database/index.ts' }}
50+
import { MemoryDB } from "@builderbot/bot";
5051
export const database = new MemoryDB()
5152
```
5253
```ts {{ title: 'flow/index.ts' }}

0 commit comments

Comments
 (0)