diff options
Diffstat (limited to 'src/ext/mod.rs')
| -rw-r--r-- | src/ext/mod.rs | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/src/ext/mod.rs b/src/ext/mod.rs index ba46daf..6254539 100644 --- a/src/ext/mod.rs +++ b/src/ext/mod.rs @@ -1,5 +1,5 @@ -//! A set of extended functionality that is not required for a [`Client`] and/or -//! [`Shard`] to properly function. +//! A set of extended functionality that is not required for a `Client` and/or +//! `Shard` to properly function. //! //! These are flagged behind feature-gates and can be enabled and disabled. //! @@ -9,9 +9,6 @@ //! enabled (enabled by default), the cache requires the `cache` feature to be //! enabled (enabled by default), and voice support requires the `voice` feature //! to be enabled (disabled by default). -//! -//! [`Client`]: ../client/struct.Client.html -//! [`Shard`]: ../client/gateway/struct.Shard.html #[cfg(feature="cache")] pub mod cache; |