diff options
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 |