Skip to content

Commit 11299a0

Browse files
committed
fix typo
1 parent 952c63d commit 11299a0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/ReinforcementLearningCore/src/core/reset_conditions.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ A reset condition that resets if is_terminated(env) is true.
77
"""
88
struct ResetAtTerminal end
99

10-
(::ResetAtTerminal)(policy, env) = is_terminal(env)
10+
(::ResetAtTerminal)(policy, env) = is_terminated(env)
1111

1212
"""
1313
ResetAfterNSteps(n)

0 commit comments

Comments
 (0)