better comments

This commit is contained in:
Aria Moradi
2021-08-30 02:48:10 +04:30
parent 38ad4c6dec
commit 9771f566b0
@@ -37,7 +37,7 @@ class SystemPropertyOverrideDelegate(val config: Config, val moduleName: String)
"Int" -> combined.toInt()
"Boolean" -> combined.toBoolean()
// add more types as needed
else -> combined
else -> combined // covers String
} as T
}
}