Skip to content

Commit

Permalink
Convert comments to KDoc comments
Browse files Browse the repository at this point in the history
  • Loading branch information
ianthetechie committed Nov 12, 2024
1 parent cf14196 commit 4c1d3e2
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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?
)

0 comments on commit 4c1d3e2

Please sign in to comment.