From 4c1d3e2d5ef3e22c4a20c73420f923aef917725e Mon Sep 17 00:00:00 2001 From: Ian Wagner Date: Tue, 12 Nov 2024 23:00:50 +0900 Subject: [PATCH] Convert comments to KDoc comments --- .../annotation/valhalla/ValhallaOSRMExtendedAnnotation.kt | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/android/core/src/main/java/com/stadiamaps/ferrostar/core/annotation/valhalla/ValhallaOSRMExtendedAnnotation.kt b/android/core/src/main/java/com/stadiamaps/ferrostar/core/annotation/valhalla/ValhallaOSRMExtendedAnnotation.kt index 24649cc7..1608c440 100644 --- a/android/core/src/main/java/com/stadiamaps/ferrostar/core/annotation/valhalla/ValhallaOSRMExtendedAnnotation.kt +++ b/android/core/src/main/java/com/stadiamaps/ferrostar/core/annotation/valhalla/ValhallaOSRMExtendedAnnotation.kt @@ -4,12 +4,12 @@ import com.squareup.moshi.Json import com.stadiamaps.ferrostar.core.annotation.Speed data class ValhallaOSRMExtendedAnnotation( - // The speed limit of the segment. + /** The speed limit of the segment. */ @Json(name = "maxspeed") val speedLimit: Speed?, - // The estimated speed of travel for the segment, in meters per second. + /** The estimated speed of travel for the segment, in meters per second. */ val speed: Double?, - // The distance in meters of the segment. + /** The distance in meters of the segment. */ val distance: Double?, - // The estimated time to traverse the segment, in seconds. + /** The estimated time to traverse the segment, in seconds. */ val duration: Double? )