From 4f4decf73965593667dfb8f93f259c7f7d080a74 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jonah=20Br=C3=BCchert?= Date: Fri, 5 Jun 2026 15:14:51 +0200 Subject: [PATCH] Some documentation formating fixes --- src/objects.rs | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/objects.rs b/src/objects.rs index 302ff39..d80dc5c 100644 --- a/src/objects.rs +++ b/src/objects.rs @@ -261,7 +261,7 @@ pub struct RawStopTime { /// Indicates if arrival and departure times for a stop are strictly adhered to by the vehicle or if they are instead approximate and/or interpolated times #[serde(default)] pub timepoint: TimepointType, - /// This field is not part of the main GTFS specification, it is part of the Google Transit Ticketing extension + /// This field is not part of the main GTFS specification, it is part of the Google Transit Ticketing extension. /// Enable or disable buying tickets via a deep link #[serde(default)] pub ticketing_type: TicketingType, @@ -562,7 +562,7 @@ pub struct Agency { /// Email address actively monitored by the agency’s customer service department #[serde(rename = "agency_email")] pub email: Option, - /// This field is not part of the main GTFS specification, it is part of the Google Transit Ticketing extension + /// This field is not part of the main GTFS specification, it is part of the Google Transit Ticketing extension. /// Trip ID to pass to a ticket shop pub ticketing_deep_link_id: Option, } @@ -925,7 +925,7 @@ impl Id for RawPathway { } } -/// This object is not part of the main GTFS specification, it is part of the Google Transit Ticketing extension +/// This object is not part of the main GTFS specification, it is part of the Google Transit Ticketing extension. /// A mapping of the GTFS-identifiers to the ticket shop identifiers #[derive(Clone, Debug, Serialize, Deserialize, Default)] pub struct TicketingIdentifier { @@ -937,7 +937,7 @@ pub struct TicketingIdentifier { pub agency_id: String, } -/// This object is not part of the main GTFS specification, it is part of the Google Transit Ticketing extension +/// This object is not part of the main GTFS specification, it is part of the Google Transit Ticketing extension. /// The base url to a ticket shop without the trip specific parameters #[derive(Clone, Debug, Serialize, Deserialize, Default)] pub struct TicketingDeepLink {