From 6a7229c74825478bcae3ed67ed7fabd1ad366d6b Mon Sep 17 00:00:00 2001 From: Edoardo La Greca Date: Wed, 6 Aug 2025 19:14:00 +0200 Subject: fix documentation of insecInts and insecStrs in OutMessage --- src/main/kotlin/OutMessage.kt | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'src') diff --git a/src/main/kotlin/OutMessage.kt b/src/main/kotlin/OutMessage.kt index 61805cb..a792224 100644 --- a/src/main/kotlin/OutMessage.kt +++ b/src/main/kotlin/OutMessage.kt @@ -16,14 +16,14 @@ import kotlin.math.pow */ class OutMessage(val type: NinePMessageType, val tag: UShort, val fieldNames: List, val fieldValuesInt: Map, val fieldValuesStr: Map, val fieldValuesRaw: Map>, val maxSize: UInt) { /** - * Intersection between [fieldNames] and [fieldValuesInt]. In other words: the amount of integer fields that are - * going to be used when writing the message. + * Intersection between [fieldNames] and [fieldValuesInt]. In other words: the integer fields that are going to be + * used when writing the message. */ private val insecInts = fieldNames.intersect(fieldValuesInt.keys) /** - * Intersection between [fieldNames] and [fieldValuesStr]. In other words: the amount of string fields that are - * going to be used when writing the message. + * Intersection between [fieldNames] and [fieldValuesStr]. In other words: the string fields that are going to be + * used when writing the message. */ private val insecStrs = fieldNames.intersect(fieldValuesStr.keys) -- cgit v1.2.3