Skip to content

Commit

Permalink
docs: fix broken docs link
Browse files Browse the repository at this point in the history
  • Loading branch information
SeaDve committed Nov 19, 2023
1 parent 8d7208e commit cd2db98
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/local_server.rs
Original file line number Diff line number Diff line change
Expand Up @@ -558,12 +558,12 @@ where
///
/// * `org.mpris.MediaPlayer2.vlc.instance7389`
///
/// **Note:** According to the [`D-Bus specification`], the unique
/// **Note:** According to the [D-Bus specification], the unique
/// identifier "must only contain the ASCII characters
/// `[A-Z][a-z][0-9]_-`" and "must not begin with a digit".
///
/// [`LocalRootInterface`]: crate::LocalRootInterface
/// [`D-Bus specification`]: dbus.freedesktop.org/doc/dbus-specification.html#message-protocol-names-bus
/// [D-Bus specification]: https://dbus.freedesktop.org/doc/dbus-specification.html#message-protocol-names-bus
pub async fn new(bus_name_suffix: &str, imp: T) -> Result<Self> {
Self::new_inner(
bus_name_suffix,
Expand Down
4 changes: 2 additions & 2 deletions src/server.rs
Original file line number Diff line number Diff line change
Expand Up @@ -393,11 +393,11 @@ where
///
/// * `org.mpris.MediaPlayer2.vlc.instance7389`
///
/// **Note:** According to the [`D-Bus specification`], the unique
/// **Note:** According to the [D-Bus specification], the unique
/// identifier "must only contain the ASCII characters
/// `[A-Z][a-z][0-9]_-`" and "must not begin with a digit".
///
/// [`D-Bus specification`]: dbus.freedesktop.org/doc/dbus-specification.html#message-protocol-names-bus
/// [D-Bus specification]: https://dbus.freedesktop.org/doc/dbus-specification.html#message-protocol-names-bus
pub async fn new(bus_name_suffix: &str, imp: T) -> Result<Self> {
Self::new_inner(bus_name_suffix, imp, |builder, _| Ok(builder)).await
}
Expand Down

0 comments on commit cd2db98

Please sign in to comment.