Skip to content

Commit 042cde0

Browse files
committed
Fixed an issue in the documentation
1 parent 7fcb1d6 commit 042cde0

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

README.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ A client can communicate with Gymie via JSON, with the following format:
7575
```
7676

7777
### List of methods exposed to the client
78-
- <a name="make">`make`<a>: Instantiates an environment.
78+
- <a name="make">`make`</a>: Instantiates an environment.
7979
```js
8080
// Params:
8181
{
@@ -88,7 +88,7 @@ A client can communicate with Gymie via JSON, with the following format:
8888
"instance_id": "unique-id"
8989
}
9090
```
91-
- <a name="step">`step`<a>: Performs a step on the environment.
91+
- <a name="step">`step`</a>: Performs a step on the environment.
9292
```js
9393
// Params:
9494
{
@@ -104,7 +104,7 @@ A client can communicate with Gymie via JSON, with the following format:
104104
{...}, // info
105105
]
106106
```
107-
- <a name="reset">`reset`<a>: Resets the environment.
107+
- <a name="reset">`reset`</a>: Resets the environment.
108108
```js
109109
// Params:
110110
{
@@ -114,7 +114,7 @@ A client can communicate with Gymie via JSON, with the following format:
114114
// Response:
115115
[...] // initial state
116116
```
117-
- <a name="close">`close`<a>: Closes the environment.
117+
- <a name="close">`close`</a>: Closes the environment.
118118
```js
119119
// Params:
120120
{
@@ -156,7 +156,7 @@ A client can communicate with Gymie via JSON, with the following format:
156156

157157
// TODO MultiDiscrete
158158
```
159-
- <a name="action_space">`action_space`<a>: Generates a dictionary with action space info.
159+
- <a name="action_space">`action_space`</a>: Generates a dictionary with action space info.
160160
```js
161161
// Params:
162162
{
@@ -177,7 +177,7 @@ A client can communicate with Gymie via JSON, with the following format:
177177
"high": [1, 1, 1]
178178
}
179179
```
180-
- <a name="action_sample">`action_sample`<a>: Generates a random action.
180+
- <a name="action_sample">`action_sample`</a>: Generates a random action.
181181
```js
182182
// Params:
183183
{

gymie/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@
22
from gymie.api import override
33
from gymie.exceptions import *
44

5-
__version__ = '0.4.0'
5+
__version__ = '0.4.1'

setup.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
setuptools.setup(
77
name="gymie",
8-
version="0.4.0",
8+
version="0.4.1",
99
author="Francisco Ramos",
1010
author_email="francisco.ramos@researchlab.ai",
1111
description="WebSocket server that exposes an API to train AI agents on OpenAI Gym and gym-api-like Environments",

0 commit comments

Comments
 (0)