aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAustin Hellyer <[email protected]>2017-02-03 12:24:50 -0800
committerAustin Hellyer <[email protected]>2017-02-03 12:24:50 -0800
commitdf9a9a98b56c99a6699842849235d050341303dc (patch)
tree5f13ef12a6bdbfe76518f8ca2fbdf6e477d678b9
parentFix value of 'browser' in identify (diff)
downloadserenity-df9a9a98b56c99a6699842849235d050341303dc.tar.xz
serenity-df9a9a98b56c99a6699842849235d050341303dc.zip
Remove a stupid claim about the lib in the docs
-rw-r--r--Cargo.toml2
-rw-r--r--README.md2
-rw-r--r--src/client/mod.rs4
-rw-r--r--src/lib.rs2
4 files changed, 5 insertions, 5 deletions
diff --git a/Cargo.toml b/Cargo.toml
index 0f500c8..570459d 100644
--- a/Cargo.toml
+++ b/Cargo.toml
@@ -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"]
diff --git a/README.md b/README.md
index 1da5029..82dc3ce 100644
--- a/README.md
+++ b/README.md
@@ -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,
diff --git a/src/lib.rs b/src/lib.rs
index 25360d4..59b4acf 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -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.
//!