From 57819c4c90ab97bb19be10a1d483e7e9ee8b70ae Mon Sep 17 00:00:00 2001 From: Matyasch <47661203+Matyasch@users.noreply.github.com> Date: Fri, 20 Jan 2023 14:56:36 +0000 Subject: [PATCH] Switch references of the MultiBinary and MultiDiscrete classes in documentation (#279) --- docs/api/spaces.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/api/spaces.md b/docs/api/spaces.md index 73b3ff7ca..612f0cee6 100644 --- a/docs/api/spaces.md +++ b/docs/api/spaces.md @@ -53,8 +53,8 @@ Gymnasium has a number of fundamental spaces that are used as building boxes for * :py:class:`Box` - Supports continuous (and discrete) vectors or matrices, used for vector observations, images, etc * :py:class:`Discrete` - Supports a single discrete number of values with an optional start for the values -* :py:class:`MultiDiscrete` - Supports single or matrices of binary values, used for holding down a button or if an agent has an object -* :py:class:`MultiBinary` - Supports multiple discrete values with multiple axes, used for controller actions +* :py:class:`MultiBinary` - Supports single or matrices of binary values, used for holding down a button or if an agent has an object +* :py:class:`MultiDiscrete` - Supports multiple discrete values with multiple axes, used for controller actions * :py:class:`Text` - Supports strings, used for passing agent messages, mission details, etc ```