-
-
Notifications
You must be signed in to change notification settings - Fork 3.6k
Fix some warnings on docs #4172
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
@@ -21,11 +21,6 @@ | |||
.. automodule:: readthedocs.projects.models | |||
:members: | |||
|
|||
:mod:`readthedocs.projects.search_indexes` |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This was removed in a cleanup (#4039)
@@ -102,7 +102,7 @@ Why do we collect this? | |||
- We limit our use of your User Personal Information to the purposes listed in this Privacy Statement. | |||
If we need to use your User Personal Information for other purposes, we will ask your permission first. | |||
You can always see what information we have in your | |||
`user account <https://readthedocs.org/accounts/edit/>`_. | |||
`user account <https://readthedocs.org/accounts/edit/>`__. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Using anonymous refs is recommended (lost the link for this statement :/, but it was on a sphinx issue)
@@ -19,7 +19,7 @@ class VersionManagerBase(models.Manager): | |||
""" | |||
Version manager for manager only queries. | |||
|
|||
For queries not suitable for the :py:cls:`VersionQuerySet`, such as create | |||
For queries not suitable for the :py:class:`VersionQuerySet`, such as create |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Somewhere in the time this was renamed to :py:class:
http://www.sphinx-doc.org/en/stable/domains.html#role-py:class
Related to #4166