diff options
| author | Austin Hellyer <[email protected]> | 2016-11-26 11:37:18 -0800 |
|---|---|---|
| committer | Austin Hellyer <[email protected]> | 2016-11-26 11:37:18 -0800 |
| commit | 77354ab321bec1ff66af0e27eb87a7eec3e3db24 (patch) | |
| tree | 693b43ae7be07be11426faf6e6282d838e426a04 /src/ext/mod.rs | |
| parent | Make Cache::get_channel return a reference (diff) | |
| download | serenity-77354ab321bec1ff66af0e27eb87a7eec3e3db24.tar.xz serenity-77354ab321bec1ff66af0e27eb87a7eec3e3db24.zip | |
Add a bit more docs
Diffstat (limited to 'src/ext/mod.rs')
| -rw-r--r-- | src/ext/mod.rs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/ext/mod.rs b/src/ext/mod.rs index 4484b0b..9605466 100644 --- a/src/ext/mod.rs +++ b/src/ext/mod.rs @@ -1,5 +1,5 @@ -//! The set of extensions is functionality that is not required for a -//! [`Client`] and/or [`Connection`] 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. //! @@ -11,7 +11,7 @@ //! to be enabled (disabled by default). //! //! [`Client`]: ../client/struct.Client.html -//! [`Connection`]: ../client/struct.Connection.html +//! [`Shard`]: ../client/gateway/struct.Shard.html #[cfg(feature = "cache")] pub mod cache; |