summaryrefslogtreecommitdiff
path: root/doc/source
diff options
context:
space:
mode:
authorPauli Virtanen <pav@iki.fi>2009-06-27 18:08:08 +0000
committerPauli Virtanen <pav@iki.fi>2009-06-27 18:08:08 +0000
commite4c0967e830cc11f3279635bab78d556ec2d4f1e (patch)
tree4e4cdf3083c0a3a84071bc7653df6df40a8fcada /doc/source
parentaa292318e92eee5f99fa5701e4a84ae7bd0bdc4c (diff)
downloadnumpy-e4c0967e830cc11f3279635bab78d556ec2d4f1e.tar.gz
docs: fix class documentation
Diffstat (limited to 'doc/source')
-rw-r--r--doc/source/_templates/autosummary/class.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/source/_templates/autosummary/class.rst b/doc/source/_templates/autosummary/class.rst
index 15af9822e..0cabe7cd1 100644
--- a/doc/source/_templates/autosummary/class.rst
+++ b/doc/source/_templates/autosummary/class.rst
@@ -6,7 +6,7 @@
.. autosummary::
:toctree:
{% for item in methods %}
- ~{{ name }}.{{ item }}
+ {{ name }}.{{ item }}
{%- endfor %}
{% endif %}
{% endblock %}
@@ -17,7 +17,7 @@
.. autosummary::
:toctree:
{% for item in attributes %}
- ~{{ name }}.{{ item }}
+ {{ name }}.{{ item }}
{%- endfor %}
{% endif %}
{% endblock %}