docs: update README.md in atroposlib/env/README.md

Fixing wrong link to the base environment class documentation
This commit is contained in:
Han 2025-05-18 13:34:13 -07:00 committed by GitHub
parent c189fc3351
commit 76abb16dac
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1,6 +1,6 @@
# Base Environment (`BaseEnv`)
The `BaseEnv` class (located in `trajectoryhandler/envs/base.py`) provides a foundation for creating custom reinforcement learning environments that interact with Atropos. When creating your own environment, you will typically subclass `BaseEnv` and implement several key methods.
The `BaseEnv` class (located in `atroposlib/envs/base.py`) provides a foundation for creating custom reinforcement learning environments that interact with Atropos. When creating your own environment, you will typically subclass `BaseEnv` and implement several key methods.
## Design philosophy