summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPauli Virtanen <pav@iki.fi>2009-10-02 19:38:35 +0000
committerPauli Virtanen <pav@iki.fi>2009-10-02 19:38:35 +0000
commitba1c79f22b3730efcb8e86beca3b432d8c9ce5d6 (patch)
tree8ad787485a17c4984a86aba72416b6fd61a98d45
parent7587f14117ee2995450bdc4f0d6de96150b07cf3 (diff)
downloadnumpy-ba1c79f22b3730efcb8e86beca3b432d8c9ce5d6.tar.gz
Final doc import cleanups. Thanks to all contributors for the preceding commits!
There are still some docstrings in the queue -- those'll be committed in later.
-rw-r--r--doc/source/user/c-info.beyond-basics.rst2
-rw-r--r--numpy/__init__.py2
2 files changed, 3 insertions, 1 deletions
diff --git a/doc/source/user/c-info.beyond-basics.rst b/doc/source/user/c-info.beyond-basics.rst
index 491c2c9ae..703124b58 100644
--- a/doc/source/user/c-info.beyond-basics.rst
+++ b/doc/source/user/c-info.beyond-basics.rst
@@ -378,6 +378,8 @@ register ufuncs for user-defined data-types.
...
+.. _user.user-defined-data-types:
+
User-defined data-types
=======================
diff --git a/numpy/__init__.py b/numpy/__init__.py
index 1592dc8cb..897c14060 100644
--- a/numpy/__init__.py
+++ b/numpy/__init__.py
@@ -93,7 +93,7 @@ the source code).
Copies vs. in-place operation
-----------------------------
Most of the functions in `numpy` return a copy of the array argument
-(e.g., `sort`). In-place versions of these functions are often
+(e.g., `np.sort`). In-place versions of these functions are often
available as array methods, i.e. ``x = np.array([1,2,3]); x.sort()``.
Exceptions to this rule are documented.