DOC: fix syntax error

This commit is contained in:
François Boulogne
2013-10-14 16:25:29 +02:00
parent 69bdfe0339
commit 65f73ee171
+3 -3
View File
@@ -30,9 +30,9 @@ def unique_rows(ar):
Examples
--------
>>> ar = np.array([[1, 0, 1],
[0, 1, 0],
[1, 0, 1]], np.uint8)
>>> aru = unique_rows(ar)
... [0, 1, 0],
... [1, 0, 1]], np.uint8)
>>> unique_rows(ar)
array([[0, 1, 0],
[1, 0, 1]], dtype=uint8)
"""