diff --git a/docs/RoutingModes.md b/docs/RoutingModes.md
index 9b96e65e97d..88148d370e5 100644
--- a/docs/RoutingModes.md
+++ b/docs/RoutingModes.md
@@ -17,7 +17,7 @@ Cycling for the entirety of the route or taking a bicycle onto the public transp
Taking a rented, shared-mobility bike for part or the entirety of the route.
-_Prerequisite:_ Vehicle or station location need to be added to OTP from dynamic data feeds.
+_Prerequisite:_ Vehicle or station locations need to be added to OTP from dynamic data feeds.
See [Configuring GBFS](UpdaterConfig.md#gbfs-vehicle-rental-systems) on how to add one.
@@ -25,6 +25,7 @@ See [Configuring GBFS](UpdaterConfig.md#gbfs-vehicle-rental-systems) on how to a
Leaving the bicycle at the departure station and walking from the arrival station to the destination.
This mode needs to be combined with at least one transit mode otherwise it behaves like an ordinary bicycle journey.
+
_Prerequisite:_ Bicycle parking stations present in the OSM file and visible to OTP by enabling the property `staticBikeParkAndRide` during graph build.
@@ -51,7 +52,7 @@ Walking to a pickup point along the road, driving to a drop-off point along the
Walk to a car rental point, drive to a car rental drop-off point and walk the rest of the way.
This can include car rental at fixed locations or free-floating services.
-_Prerequisite:_ Vehicle or station location need to be added to OTP from dynamic data feeds.
+_Prerequisite:_ Vehicle or station locations need to be added to OTP from dynamic data feeds.
See [Configuring GBFS](UpdaterConfig.md#gbfs-vehicle-rental-systems) on how to add one.
@@ -64,14 +65,14 @@ _Prerequisite:_ Park-and-ride areas near the stations need to be present in the
FLEXIBLE
-Encompasses all types of on-demand and flexible transportation for example GTFS Flex or NeTex Flexible Stop Places.
+Encompasses all types of on-demand and flexible transportation for example GTFS Flex or NeTEx Flexible Stop Places.
SCOOTER_RENTAL
Walking to a scooter rental point, riding a scooter to a scooter rental drop-off point, and walking the rest of the way.
This can include scooter rental at fixed locations or free-floating services.
-_Prerequisite:_ Vehicle or station location need to be added to OTP from dynamic data feeds.
+_Prerequisite:_ Vehicle or station locations need to be added to OTP from dynamic data feeds.
See [Configuring GBFS](UpdaterConfig.md#gbfs-vehicle-rental-systems) on how to add one.
diff --git a/src/main/java/org/opentripplanner/routing/api/request/StreetMode.java b/src/main/java/org/opentripplanner/routing/api/request/StreetMode.java
index fcdefa35de8..0f5d65305b3 100644
--- a/src/main/java/org/opentripplanner/routing/api/request/StreetMode.java
+++ b/src/main/java/org/opentripplanner/routing/api/request/StreetMode.java
@@ -137,7 +137,7 @@ public String typeDescription() {
private static String GBFS_PREREQ =
"""
- _Prerequisite:_ Vehicle or station location need to be added to OTP from dynamic data feeds.
+ _Prerequisite:_ Vehicle or station locations need to be added to OTP from dynamic data feeds.
See [Configuring GBFS](UpdaterConfig.md#gbfs-vehicle-rental-systems) on how to add one.
""";
@@ -148,8 +148,9 @@ public String enumValueDescription() {
case WALK -> "Walking some or all of the way of the route.";
case BIKE -> "Cycling for the entirety of the route or taking a bicycle onto the public transport and cycling from the arrival station to the destination.";
case BIKE_TO_PARK -> """
- Leaving the bicycle at the departure station and walking from the arrival station to the destination.
- This mode needs to be combined with at least one transit mode otherwise it behaves like an ordinary bicycle journey.
+ Leaving the bicycle at the departure station and walking from the arrival station to the destination.
+ This mode needs to be combined with at least one transit mode otherwise it behaves like an ordinary bicycle journey.
+
_Prerequisite:_ Bicycle parking stations present in the OSM file and visible to OTP by enabling the property `staticBikeParkAndRide` during graph build.
""";
case BIKE_RENTAL -> """
@@ -182,7 +183,7 @@ This means that the car is not parked in a permanent parking area but rather the
See [the sandbox documentation](sandbox/RideHailing.md) on how to configure it.
""";
- case FLEXIBLE -> "Encompasses all types of on-demand and flexible transportation for example GTFS Flex or NeTex Flexible Stop Places.";
+ case FLEXIBLE -> "Encompasses all types of on-demand and flexible transportation for example GTFS Flex or NeTEx Flexible Stop Places.";
};
}
}