diff options
| author | Austin Hellyer <[email protected]> | 2017-02-03 12:24:50 -0800 |
|---|---|---|
| committer | Austin Hellyer <[email protected]> | 2017-02-03 12:24:50 -0800 |
| commit | df9a9a98b56c99a6699842849235d050341303dc (patch) | |
| tree | 5f13ef12a6bdbfe76518f8ca2fbdf6e477d678b9 | |
| parent | Fix value of 'browser' in identify (diff) | |
| download | serenity-df9a9a98b56c99a6699842849235d050341303dc.tar.xz serenity-df9a9a98b56c99a6699842849235d050341303dc.zip | |
Remove a stupid claim about the lib in the docs
| -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. //! |