Skip to content

Commit 7fe1c81

Browse files
committed
Fixed docstring typo
1 parent d4cdf33 commit 7fe1c81

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

pytensor/tensor/math.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1950,13 +1950,13 @@ def dot(l, r):
19501950
19511951
.. code:: python
19521952
1953-
import pymc3 as pm
1954-
import theano.tensor as tt
1953+
import pymc as pm
1954+
import pytensor.tensor as pt
19551955
19561956
with pm.Model() as model:
19571957
x = pm.Normal('x', mu=0, sd=1, shape=2)
19581958
y = pm.Normal('y', mu=0, sd=1, shape=2)
1959-
z = tt.dot(x, y)
1959+
z = pt.dot(x, y)
19601960
"""
19611961

19621962
if not isinstance(l, Variable):

0 commit comments

Comments
 (0)