diff --git a/Docs/python_api.md b/Docs/python_api.md
index c14a74ab0..f28677fd6 100644
--- a/Docs/python_api.md
+++ b/Docs/python_api.md
@@ -1795,7 +1795,7 @@ Sets the minimum distance in meters that a vehicle has to keep with the others.
Forces a vehicle to change either to the lane on its left or right, if existing, as indicated in `direction`. This method applies the lane change no matter what, disregarding possible collisions.
- **Parameters:**
- `actor` (_[carla.Actor](#carla.Actor)_) – Vehicle being forced to change lanes.
- - `direction` (_bool_) – Destination lane. __True__ is the one on the left and __False__ is the right one.
+ - `direction` (_bool_) – Destination lane. __True__ is the one on the right and __False__ is the left one.
- **global_distance_to_leading_vehicle**(**self**, **distance**)
Sets the minimum distance in meters that vehicles have to keep with the rest. The distance is in meters and will affect the minimum moving distance. It is computed from center to center of the vehicle objects.
- **Parameters:**
diff --git a/PythonAPI/docs/client.yml b/PythonAPI/docs/client.yml
index aeb842b06..de40ddeb4 100644
--- a/PythonAPI/docs/client.yml
+++ b/PythonAPI/docs/client.yml
@@ -314,7 +314,7 @@
- param_name: direction
type: bool
doc: >
- Destination lane. __True__ is the one on the left and __False__ is the right one.
+ Destination lane. __True__ is the one on the right and __False__ is the left one.
doc: >
Forces a vehicle to change either to the lane on its left or right, if existing, as indicated in `direction`. This method applies the lane change no matter what, disregarding possible collisions.
# --------------------------------------