Add missing swigglies

This commit is contained in:
Michael Shepanski 2017-01-30 23:48:21 -05:00
parent 04251d3805
commit 5f9c230dce
2 changed files with 3 additions and 3 deletions

View file

@ -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.

View file

@ -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.