diff --git a/plexapi/client.py b/plexapi/client.py index 0478597b..0ba3ff79 100644 --- a/plexapi/client.py +++ b/plexapi/client.py @@ -393,7 +393,7 @@ class PlexClient(object): """ Start playback of the specified media item. Parameters: - media (:class:`plexapi.media.Media`): Media item to be played back (movie, music, photo). + media (:class:`~plexapi.media.Media`): Media item to be played back (movie, music, photo). **params (TYPE): Additional parameters to include in the request. Useful to specify things such as offset, audio, or subtitle streams. diff --git a/plexapi/library.py b/plexapi/library.py index 60739589..26607f88 100644 --- a/plexapi/library.py +++ b/plexapi/library.py @@ -52,7 +52,7 @@ class Library(object): return items def section(self, title=None): - """ Returns the :class:`plexapi.library.LibrarySection` that matches the specified title. + """ Returns the :class:`~plexapi.library.LibrarySection` that matches the specified title. Parameters: title (str): Title of the section to return. @@ -66,7 +66,7 @@ class Library(object): raise NotFound('Invalid library section: %s' % title) def sectionByID(self, sectionID): - """ Returns the :class:`plexapi.library.LibrarySection` that matches the specified sectionID. + """ Returns the :class:`~plexapi.library.LibrarySection` that matches the specified sectionID. Parameters: sectionID (int): ID of the section to return.