From 09da85bfc373689d022e263e9e72869493ebd654 Mon Sep 17 00:00:00 2001 From: Kyle Simpson Date: Fri, 13 Nov 2020 17:55:36 +0000 Subject: [PATCH] Some updated links, move to current/next branches. --- README.md | 2 +- src/lib.rs | 13 ++++++------- src/tracks/queue.rs | 2 +- 3 files changed, 8 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index c5366c7de..07e6df476 100644 --- a/README.md +++ b/README.md @@ -28,4 +28,4 @@ Songbird's logo is based upon the copyright-free image ["Black-Capped Chickadee" [twilight]: https://github.com/twilight-rs/twilight ["Black-Capped Chickadee"]: https://www.oldbookillustrations.com/illustrations/black-capped-chickadee/ [lavalink]: https://github.com/Frederikam/Lavalink -[this crate's examples directory]: https://github.com/serenity-rs/songbird/tree/master/examples +[this crate's examples directory]: https://github.com/serenity-rs/songbird/tree/current/examples diff --git a/src/lib.rs b/src/lib.rs index b01ecc152..b887a28ab 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1,6 +1,6 @@ #![doc( - html_logo_url = "https://raw.githubusercontent.com/FelixMcFelix/serenity/voice-rework/songbird/songbird.png", - html_favicon_url = "https://raw.githubusercontent.com/FelixMcFelix/serenity/voice-rework/songbird/songbird-ico.png" + html_logo_url = "https://raw.githubusercontent.com/serenity-rs/songbird/master/songbird.png", + html_favicon_url = "https://raw.githubusercontent.com/serenity-rs/songbird/master/songbird-ico.png" )] #![deny(missing_docs)] //! ![project logo][logo] @@ -21,18 +21,17 @@ //! Songbird's gateway functionality requires you to specify the `GUILD_VOICE_STATES` intent. //! //! ## Examples -//! Full examples showing various types of functionality and integrations can be found as part of [serenity's examples], -//! and in [this crate's examples directory]. +//! Full examples showing various types of functionality and integrations can be found +//! in [this crate's examples directory]. //! //! ## Attribution //! //! Songbird's logo is based upon the copyright-free image ["Black-Capped Chickadee"] by George Gorgas White. //! -//! [logo]: https://raw.githubusercontent.com/FelixMcFelix/serenity/voice-rework/songbird/songbird.png +//! [logo]: https://github.com/serenity-rs/songbird/raw/master/songbird.png //! [serenity]: https://github.com/serenity-rs/serenity //! [twilight]: https://github.com/twilight-rs/twilight -//! [serenity's examples]: https://github.com/serenity-rs/serenity/tree/current/examples -//! [this crate's examples directory]: https://github.com/serenity-rs/serenity/tree/current/songbird/examples +//! [this crate's examples directory]: https://github.com/serenity-rs/songbird/tree/current/examples //! ["Black-Capped Chickadee"]: https://www.oldbookillustrations.com/illustrations/black-capped-chickadee/ //! [`ConnectionInfo`]: struct.ConnectionInfo.html //! [lavalink]: https://github.com/Frederikam/Lavalink diff --git a/src/tracks/queue.rs b/src/tracks/queue.rs index 349bc3d28..7f0b30468 100644 --- a/src/tracks/queue.rs +++ b/src/tracks/queue.rs @@ -16,7 +16,7 @@ use tracing::{info, warn}; /// This makes use of [`TrackEvent`]s to determine when the current /// song or audio file has finished before playing the next entry. /// -/// `examples/e16_voice_events` demonstrates how a user might manage, +/// `examples/serenity/voice_events_queue` demonstrates how a user might manage, /// track and use this to run a song queue in many guilds in parallel. /// This code is trivial to extend if extra functionality is needed. ///