diff options
| author | Fuwn <[email protected]> | 2020-11-13 14:53:17 -0800 |
|---|---|---|
| committer | GitHub <[email protected]> | 2020-11-13 14:53:17 -0800 |
| commit | 1d3f9944cbce99b11f00f99a9aa552c45651b956 (patch) | |
| tree | 0435763afacd11dbe742254514cc5112dd2d2d09 | |
| parent | fix: grammer/ sizing (diff) | |
| download | blog-1d3f9944cbce99b11f00f99a9aa552c45651b956.tar.xz blog-1d3f9944cbce99b11f00f99a9aa552c45651b956.zip | |
fix: grammer
| -rw-r--r-- | articles/2020-11-13-systems-languages-for-discord-bots.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/articles/2020-11-13-systems-languages-for-discord-bots.md b/articles/2020-11-13-systems-languages-for-discord-bots.md index b07c84b..99c3ae5 100644 --- a/articles/2020-11-13-systems-languages-for-discord-bots.md +++ b/articles/2020-11-13-systems-languages-for-discord-bots.md @@ -80,7 +80,7 @@ let value: string = "Hello."; Which one do you think is Rust, which one TypeScript? Well, example one was Rust. So you see, the typing system is very similar, so you would catch on in no time. -<small>If you would like more information on either of the typings, here is a list of [Rust's typings](https://doc.rust-lang.org/reference/types.html), and [TypeScript's typing](https://blog.angular-university.io/typescript-2-type-system-how-do-type-definitions-work-in-npm-when-to-use-types-and-why-what-are-compiler-opt-in-types/).</small> +<small>If you would like more information on either of the typings, here is a list of [Rust's typings](https://doc.rust-lang.org/reference/types.html), and [TypeScript's typings](https://blog.angular-university.io/typescript-2-type-system-how-do-type-definitions-work-in-npm-when-to-use-types-and-why-what-are-compiler-opt-in-types/).</small> Now, you might be hooked, but where to start? I suggest you take a look at [Serenity](https://github.com/serenity-rs/serenity). Serenity is a Rust crate (simular to a NPM package), that is a all-in-one, Discord wrapper for bots. They even have [Discord](https://discord.gg/9X7vCus) server which you could join if you need help! |