aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorZeyla Hellyer <[email protected]>2018-05-23 06:44:11 -0700
committerZeyla Hellyer <[email protected]>2018-05-23 06:44:11 -0700
commit0324e011f1ea0eed0709c92fe86319c812a42206 (patch)
tree3568b95fa922b9b3e5dc001d910f4f58164ff8bb /src
parentSwitch to the new repo url for travis (#316) (diff)
downloadserenity-0324e011f1ea0eed0709c92fe86319c812a42206.tar.xz
serenity-0324e011f1ea0eed0709c92fe86319c812a42206.zip
Fix links to the repo
Fixes links to the repo from `https://github.com/zeyla/serenity` to `https://github.com/serenity-rs/serenity`.
Diffstat (limited to 'src')
-rw-r--r--src/client/mod.rs2
-rw-r--r--src/constants.rs2
-rw-r--r--src/lib.rs4
3 files changed, 4 insertions, 4 deletions
diff --git a/src/client/mod.rs b/src/client/mod.rs
index b1d0f4e..0efd82f 100644
--- a/src/client/mod.rs
+++ b/src/client/mod.rs
@@ -175,7 +175,7 @@ pub struct Client {
/// [`Event::MessageDeleteBulk`]: ../model/event/enum.Event.html#variant.MessageDeleteBulk
/// [`Event::MessageUpdate`]: ../model/event/enum.Event.html#variant.MessageUpdate
/// [example 05]:
- /// https://github.com/zeyla/serenity/tree/master/examples/05_command_framework
+ /// https://github.com/serenity-rs/serenity/tree/master/examples/05_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
diff --git a/src/constants.rs b/src/constants.rs
index b79255a..89a2085 100644
--- a/src/constants.rs
+++ b/src/constants.rs
@@ -15,7 +15,7 @@ pub const MESSAGE_CODE_LIMIT: u16 = 2000;
///
/// [UserAgent]: ../hyper/header/struct.UserAgent.html
pub const USER_AGENT: &str = concat!(
- "DiscordBot (https://github.com/zeyla/serenity, ",
+ "DiscordBot (https://github.com/serenity-rs/serenity, ",
env!("CARGO_PKG_VERSION"),
")"
);
diff --git a/src/lib.rs b/src/lib.rs
index d8400c7..196a3e0 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -87,11 +87,11 @@
//! [`Event`]: model/event/enum.Event.html
//! [`Event::MessageCreate`]: model/event/enum.Event.html#variant.MessageCreate
//! [`Shard`]: gateway/struct.Shard.html
-//! [`examples`]: https://github.com/zeyla/serenity/blob/master/examples
+//! [`examples`]: https://github.com/serenity-rs/serenity/blob/master/examples
//! [cache docs]: cache/index.html
//! [client's module-level documentation]: client/index.html
//! [docs]: https://discordapp.com/developers/docs/intro
-//! [examples]: https://github.com/zeyla/serenity/tree/master/examples
+//! [examples]: https://github.com/serenity-rs/serenity/tree/master/examples
//! [gateway docs]: gateway/index.html
#![doc(html_root_url = "https://docs.rs/serenity/*")]
#![allow(unknown_lints)]