Skip to content

Commit 137f336

Browse files
committed
docs: fix typo
1 parent c599541 commit 137f336

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pytorch_optimizer/base/optimizer.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -154,7 +154,7 @@ def debias(beta: float, step: int) -> float:
154154
r"""Adam-style debias correction. Returns `1.0 - beta ** step`.
155155
156156
:param beta: float. beta.
157-
:param step. int. number of step.
157+
:param step: int. number of step.
158158
"""
159159
return 1.0 - math.pow(beta, step) # fmt: skip
160160

0 commit comments

Comments
 (0)