We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 05e95dc commit b72423bCopy full SHA for b72423b
pymc3/util.py
@@ -50,7 +50,7 @@ def get_transformed_name(name, transform):
50
51
def is_transformed_name(name):
52
"""
53
- Quickly check if a name was transformed with `get_transormed_name`
+ Quickly check if a name was transformed with `get_transformed_name`
54
55
Parameters
56
----------
@@ -60,7 +60,7 @@ def is_transformed_name(name):
60
Returns
61
-------
62
bool
63
- Boolean, whether the string could have been produced by `get_transormed_name`
+ Boolean, whether the string could have been produced by `get_transformed_name`
64
65
return name.endswith('__') and name.count('_') >= 3
66
0 commit comments