summaryrefslogtreecommitdiff
path: root/numpy
diff options
context:
space:
mode:
Diffstat (limited to 'numpy')
-rw-r--r--numpy/lib/histograms.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/numpy/lib/histograms.py b/numpy/lib/histograms.py
index 0eff73b39..70ecd6eb1 100644
--- a/numpy/lib/histograms.py
+++ b/numpy/lib/histograms.py
@@ -954,9 +954,9 @@ def histogramdd(sample, bins=10, range=None, normed=None, weights=None,
Note the unusual interpretation of sample when an array_like:
* When an array, each row is a coordinate in a D-dimensional space -
- such as ``histogramgramdd(np.array([p1, p2, p3]))``.
+ such as ``histogramdd(np.array([p1, p2, p3]))``.
* When an array_like, each element is the list of values for single
- coordinate - such as ``histogramgramdd((X, Y, Z))``.
+ coordinate - such as ``histogramdd((X, Y, Z))``.
The first form should be preferred.