summaryrefslogtreecommitdiff
path: root/numpy/ma/extras.py
diff options
context:
space:
mode:
Diffstat (limited to 'numpy/ma/extras.py')
-rw-r--r--numpy/ma/extras.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/numpy/ma/extras.py b/numpy/ma/extras.py
index 3032a462b..2ab2eae93 100644
--- a/numpy/ma/extras.py
+++ b/numpy/ma/extras.py
@@ -567,7 +567,7 @@ def dot(a,b, strict=False):
The first argument is not conjugated.
"""
- #TODO: Works only with 2D arrays. There should be a way to get it to run with higher dimension
+ #!!!: Works only with 2D arrays. There should be a way to get it to run with higher dimension
if strict and (a.ndim == 2) and (b.ndim == 2):
a = mask_rows(a)
b = mask_cols(b)