If I have the following function in Python:
def _add_parameter(self, a):
# do something
And I want to add a docstring to link to the above function using reStructuredText, I just need to add an underscore at the end of the function name like the following:
"""
The _add_parameter_ adds parameters.
"""
But instead of linking it to the function, I get a cannot find declaration to go to
warning. How do I fix this?