Skip to content

Commit e4590a8

Browse files
Address code review comments (#7763)
1 parent 8f6012f commit e4590a8

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

libnavigation-core/src/main/java/com/mapbox/navigation/core/adas/AdasisDataSendingConfig.kt

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,15 @@ import com.mapbox.navigation.base.ExperimentalPreviewMapboxNavigationAPI
55
/**
66
* Data sending configuration
77
*
8-
* @param messageBinaryFormat binary format in which Adasis message will be sent
8+
* @param messageBinaryFormat binary format in which ADASIS message will be sent
99
* @param messageIntervalMs interval between sending messages in milliseconds
1010
* @param messagesInPackage number of messages in one package (one message is 8 bytes)
1111
* @param metadataCycleSeconds time in seconds between repetition of META-DATA message
1212
* @param enableRetransmission if true, retransmission will be enabled
1313
* (package will be appended with retransmission data, messages from previous cycles)
1414
* @param retransmissionMeters after passing this distance, messages will not be retransmitted
15-
* @param treeTrailingLength the trailing length of the path tree, relatively
16-
* to the map-matched position, in the adasis provider
15+
* @param treeTrailingLength the trailing length of the path tree,
16+
* relative to the map-matched position, in the ADASIS provider
1717
*/
1818
@ExperimentalPreviewMapboxNavigationAPI
1919
class AdasisDataSendingConfig private constructor(
@@ -101,7 +101,7 @@ class AdasisDataSendingConfig private constructor(
101101
/**
102102
* Builder for [AdasisDataSendingConfig].
103103
*
104-
* @param messageBinaryFormat Binary format in which Adasis message will be sent
104+
* @param messageBinaryFormat Binary format in which ADASIS message will be sent
105105
*/
106106
class Builder(private val messageBinaryFormat: AdasisMessageBinaryFormat) {
107107

@@ -149,8 +149,8 @@ class AdasisDataSendingConfig private constructor(
149149
}
150150

151151
/**
152-
* The trailing length of the path tree, relatively to the map-matched position,
153-
* in the adasis provider
152+
* The trailing length of the path tree, relative to the map-matched position,
153+
* in the ADASIS provider
154154
*/
155155
fun treeTrailingLength(treeTrailingLength: Int) = apply {
156156
this.treeTrailingLength = treeTrailingLength

0 commit comments

Comments
 (0)