Skip to content

Commit b72423b

Browse files
aloctavodiaColCarroll
authored andcommitted
fix typo (#3621)
1 parent 05e95dc commit b72423b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pymc3/util.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ def get_transformed_name(name, transform):
5050

5151
def is_transformed_name(name):
5252
"""
53-
Quickly check if a name was transformed with `get_transormed_name`
53+
Quickly check if a name was transformed with `get_transformed_name`
5454
5555
Parameters
5656
----------
@@ -60,7 +60,7 @@ def is_transformed_name(name):
6060
Returns
6161
-------
6262
bool
63-
Boolean, whether the string could have been produced by `get_transormed_name`
63+
Boolean, whether the string could have been produced by `get_transformed_name`
6464
"""
6565
return name.endswith('__') and name.count('_') >= 3
6666

0 commit comments

Comments
 (0)