@@ -730,12 +730,14 @@ def create_release(self, tag_name, target_commitish=None, name=None,
730730body = None ,draft = False ,prerelease = False ):
731731"""Create a release for this repository.
732732
733- :param str tag_name: (required)
734- :param str target_commitish: (optional)
735- :param str name: (optional)
736- :param str body: (optional)
737- :param bool draft: (optional)
738- :param bool prerelease: (optional)
733+ :param str tag_name: (required), name to give to the tag
734+ :param str target_commitish: (optional), vague concept of a target,
735+ either a SHA or a branch name.
736+ :param str name: (optional), name of the release
737+ :param str body: (optional), description of the release
738+ :param bool draft: (optional), whether this release is a draft or not
739+ :param bool prerelease: (optional), whether this is a prerelease or
740+ not
739741 :returns: :class:`Release <github3.repos.release.Release>`
740742 """
741743data = {'tag_name' :str (tag_name ),