diff options
| author | Illia <[email protected]> | 2017-01-05 00:03:27 +0300 |
|---|---|---|
| committer | Illia <[email protected]> | 2017-01-05 00:03:27 +0300 |
| commit | 3348178f151d8e1d7aa0432984a2dd23fa7b9e89 (patch) | |
| tree | 1349dd7d6849bfc12da9fb064cea4a22a5613c09 /src/client | |
| parent | Simplify a small bit of Context (diff) | |
| download | serenity-3348178f151d8e1d7aa0432984a2dd23fa7b9e89.tar.xz serenity-3348178f151d8e1d7aa0432984a2dd23fa7b9e89.zip | |
Fix rs suffix
Diffstat (limited to 'src/client')
| -rw-r--r-- | src/client/login_type.rs | 2 | ||||
| -rw-r--r-- | src/client/mod.rs | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/client/login_type.rs b/src/client/login_type.rs index 468ead5..4eae5e2 100644 --- a/src/client/login_type.rs +++ b/src/client/login_type.rs @@ -7,7 +7,7 @@ /// Use [`User`] if you are creating a selfbot which responds only to you. /// /// [`Bot`]: #variant.Bot -/// [`README`]: https://github.com/zeyla/serenity.rs/blob/master/README.md#Bots +/// [`README`]: https://github.com/zeyla/serenity/blob/master/README.md#Bots /// [`User`]: #variant.User /// [applications page]: https://discordapp.com/developers/applications/me #[derive(Copy, Clone, Hash, Eq, PartialEq, Debug, Ord, PartialOrd)] diff --git a/src/client/mod.rs b/src/client/mod.rs index 48a38ed..8a015f9 100644 --- a/src/client/mod.rs +++ b/src/client/mod.rs @@ -165,7 +165,7 @@ pub struct Client { /// Refer to [example 06] for an example on using the `data` field. /// /// [`Context::data`]: struct.Context.html#method.data - /// [example 06]: https://github.com/zeyla/serenity.rs/tree/master/examples/06_command_framework + /// [example 06]: https://github.com/zeyla/serenity/tree/master/examples/06_command_framework pub data: Arc<Mutex<ShareMap>>, /// A vector of all active shards that have received their [`Event::Ready`] /// payload, and have dispatched to [`on_ready`] if an event handler was |