diff --git a/flatland/core/transitions.py b/flatland/core/transitions.py
index d70f8da096ed949b5b0541a7406fae370b271035..467ad67a117b992bb6ab02b6f70bc83da3557081 100644
--- a/flatland/core/transitions.py
+++ b/flatland/core/transitions.py
@@ -158,7 +158,7 @@ class GridTransitions(Transitions):
 
     agent's direction:          North    East   South   West
     agent's allowed movements:  [nesw]   [nesw] [nesw]  [nesw]
-    example:                     0010     0000   1000    0000
+    example:                     1000     0000   0010    0000
 
     In the example, the agent can move from North to South and viceversa.
     """
@@ -428,7 +428,7 @@ class RailEnvTransitions(GridTransitions):
 
     agent's direction:          North    East   South   West
     agent's allowed movements:  [nesw]   [nesw] [nesw]  [nesw]
-    example:                     0010     0000   1000    0000
+    example:                     1000     0000   0010    0000
 
     In the example, the agent can move from North to South and viceversa.
     """