diff options
| -rw-r--r-- | Cargo.toml | 2 | ||||
| -rw-r--r-- | README.md | 2 | ||||
| -rw-r--r-- | src/client/mod.rs | 4 | ||||
| -rw-r--r-- | src/lib.rs | 2 |
4 files changed, 5 insertions, 5 deletions
@@ -1,7 +1,7 @@ [package] authors = ["Austin Hellyer <[email protected]>"] build = "build.rs" -description = "Ergonomic and high-level Rust library for the Discord API." +description = "A Rust library for the Discord API." documentation = "https://serenity.zey.moe" homepage = "https://github.com/zeyla/serenity" keywords = ["discord", "api"] @@ -4,7 +4,7 @@ ![serenity logo][logo] -Serenity is an ergonomic and high-level Rust library for the Discord API. +Serenity is a Rust library for the Discord API. View the [examples] on how to make and structure a bot. diff --git a/src/client/mod.rs b/src/client/mod.rs index 2d2a654..be1dbd4 100644 --- a/src/client/mod.rs +++ b/src/client/mod.rs @@ -4,8 +4,8 @@ //! the `rest` module and `Cache` are also automatically handled by the //! Client module for you. //! -//! A [`Context`] is provided for every handler. The context is an ergonomic -//! method of accessing the lower-level HTTP functions. +//! A [`Context`] is provided for every handler. The context is a method of +//! accessing the lower-level HTTP functions relevant to the contextual channel. //! //! The `rest` module is the lower-level method of interacting with the Discord //! REST API. Realistically, there should be little reason to use this yourself, @@ -1,4 +1,4 @@ -//! Serenity is an ergonomic and high-level Rust library for the Discord API. +//! Serenity is a Rust library for the Discord API. //! //! View the [examples] on how to make and structure a bot. //! |