aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/client/mod.rs4
-rw-r--r--src/lib.rs2
2 files changed, 3 insertions, 3 deletions
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.
//!