Skip to content

Commit d7e482d

Browse files
authored
Update README.md
1 parent 6b67c77 commit d7e482d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,12 @@ To accomplish this, there are two abstract environment types:
1717

1818
`AbstractEnv` is a base type for all environments.
1919

20-
The interface has four required functions for all `AbstractEnv`s:
20+
The interface has five required functions for all `AbstractEnv`s:
2121
```julia
2222
reset!(env) # returns nothing
2323
actions(env) # returns the set of all possible actions for the environment
2424
observe(env) # returns an observation
25-
act!(env, a) # returns a reward
25+
act!(env, a) # steps the environment forward and returns a reward
2626
terminated(env) # returns true or false indicating whether the environment has finished
2727
```
2828

0 commit comments

Comments
 (0)