diff --git a/pyopencl/array.py b/pyopencl/array.py
index 16e249456b4a34fc1aef147968bec2cc310d9515..6674d8d9cd0fb0ea51367428dce5d3e95029fc2b 100644
--- a/pyopencl/array.py
+++ b/pyopencl/array.py
@@ -76,8 +76,8 @@ def _get_common_dtype(obj1, obj2, queue):
                 "add one in order to be able to perform operations")
 
     # Note: We are calling np.result_type with pyopencl arrays here.
-    # Luckily, np.result_type only looks at the dtype of input arrays as of
-    # numpy v2.1.
+    # Luckily, np.result_type only looks at the dtype of input arrays up until
+    # at least numpy v2.1.
     result = np.result_type(obj1, obj2)
 
     if not has_double_support(queue.device):