Skip to content

Commit 676296c

Browse files
zaxtaxmichaelosthege
authored andcommitted
Fix typo in warning message
1 parent f1514eb commit 676296c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pytensor/tensor/blas.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1735,7 +1735,7 @@ def batched_dot(a, b):
17351735
"""
17361736
warnings.warn(
17371737
"batched_dot is deprecated. "
1738-
"Use `dot` in conjution with `tensor.vectorize` or `graph.replace.vectorize_graph`",
1738+
"Use `dot` in conjunction with `tensor.vectorize` or `graph.replace.vectorize_graph`",
17391739
FutureWarning,
17401740
)
17411741
a, b = as_tensor_variable(a), as_tensor_variable(b)

0 commit comments

Comments
 (0)