Skip to content

Commit 7aa7b56

Browse files
committed
Use https links
1 parent f412831 commit 7aa7b56

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

src/client.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
//!
33
//! Almost every method of the [`Client`] structure corresponds to some command in [MPD protocol][proto].
44
//!
5-
//! [proto]: http://www.musicpd.org/doc/protocol/
5+
//! [proto]: https://www.musicpd.org/doc/protocol/
66
77
use bufstream::BufStream;
88

src/error.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ use std::str::FromStr;
2222
use std::string::ParseError as StringParseError;
2323

2424
// Server errors {{{
25-
/// Server error codes, as defined in [libmpdclient](http://www.musicpd.org/doc/libmpdclient/protocol_8h_source.html)
25+
/// Server error codes, as defined in [libmpdclient](https://www.musicpd.org/doc/libmpdclient/protocol_8h_source.html)
2626
#[cfg_attr(feature = "serde", derive(serde_repr::Serialize_repr, serde_repr::Deserialize_repr))]
2727
#[derive(Debug, Clone, Copy, PartialEq, PartialOrd)]
2828
#[repr(u8)]

src/lib.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77
//! of the struct follow [MPD protocol][proto] for most part, making use of
88
//! traits to overload different parameters for convenience.
99
//!
10-
//! [mpd]: http://www.musicpd.org/
11-
//! [proto]: http://www.musicpd.org/doc/protocol/
10+
//! [mpd]: https://www.musicpd.org/
11+
//! [proto]: https://www.musicpd.org/doc/protocol/
1212
//!
1313
//! # Usage
1414
//!

0 commit comments

Comments
 (0)