Skip to content

Commit

Permalink
Fix apache#12944, Fix Sphinx python docstring formatting error. (apac…
Browse files Browse the repository at this point in the history
  • Loading branch information
frankfliu authored and Jose Luis Contreras committed Nov 13, 2018
1 parent f1068cb commit 61a5a7f
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions python/mxnet/gluon/parameter.py
Original file line number Diff line number Diff line change
Expand Up @@ -740,9 +740,9 @@ def get(self, name, **kwargs):
return param

def get_constant(self, name, value=None):
"""Retrieves a :py:class:`Constant` with name ``self.prefix+name``. If not found,
"""Retrieves a :py:class:`.Constant` with name ``self.prefix+name``. If not found,
:py:func:`get` will first try to retrieve it from "shared" dict. If still not
found, :py:func:`get` will create a new :py:class:`Constant` with key-word
found, :py:func:`get` will create a new :py:class:`.Constant` with key-word
arguments and insert it to self.
Parameters
Expand All @@ -756,7 +756,7 @@ def get_constant(self, name, value=None):
Returns
-------
Constant
The created or retrieved :py:class:`Constant`.
The created or retrieved :py:class:`.Constant`.
"""
name = self.prefix + name
param = self._get_impl(name)
Expand Down

0 comments on commit 61a5a7f

Please sign in to comment.